Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 314 for It (0.04 sec)

  1. pkg/kube/krt/README.md

    An exception to this would be if the list represents an atomic set of items that are never queried independently;
    in these cases, however, it is probably best to wrap it in a struct.
    For example, to represent the set of containers in a pod, we may make a `type PodContainers struct { Name string, Containers []string }` and have a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/net_test.go

    	assert.NoError(t, err)
    	fakeIPSetDeps.AssertExpectations(t)
    }
    
    // for tests that call `runtime.GC()` - we have no control over when the GC is actually scheduled,
    // and it is flake-prone to check for closure after calling it, this retries for a bit to make
    // sure the netns is closed eventually.
    func assertNSClosed(t *testing.T, closed *atomic.Bool) {
    	for i := 0; i < 5; i++ {
    		if closed.Load() {
    			return
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. tests/integration/operator/switch_cr_test.go

    			}
    			cs := t.Clusters().Default()
    			cleanupInClusterCRs(t, cs)
    			t.Cleanup(func() {
    				cleanupIstioResources(t, cs, istioCtl)
    			})
    			s := t.Settings()
    			// Operator has no --variant flag, hack it with --tag
    			tag := s.Image.Tag
    			if v := s.Image.Variant; v != "" {
    				tag += "-" + v
    			}
    			initCmd := []string{
    				"operator", "init",
    				"--hub=" + s.Image.Hub,
    				"--tag=" + tag,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. pkg/model/proxy.go

    	IstioRevision string `json:"ISTIO_REVISION,omitempty"`
    
    	// Labels specifies the set of workload instance (ex: k8s pod) labels associated with this node.
    	// It contains both StaticLabels and pod labels if any, it is a superset of StaticLabels.
    	// Note: it is not meant to be used during xds generation.
    	Labels map[string]string `json:"LABELS,omitempty"`
    
    	// StaticLabels specifies the set of labels from `ISTIO_METAJSON_LABELS`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. pkg/istio-agent/xds_proxy.go

    	p.connectedMutex.Lock()
    	// Immediately send if we are currently connected.
    	if p.connected != nil && p.connected.requestsChan != nil {
    		p.connected.requestsChan.Put(req)
    	}
    	// Otherwise place it as our initial request for new connections
    	p.initialHealthRequest = req
    	p.connectedMutex.Unlock()
    }
    
    func (p *XdsProxy) unregisterStream(c *ProxyConnection) {
    	p.connectedMutex.Lock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. pkg/kube/client.go

    	defaultLocalAddress = "localhost"
    	RunningStatus       = "status.phase=Running"
    )
    
    // Client is a helper for common Kubernetes client operations. This contains various different kubernetes
    // clients using a shared config. It is expected that all of Istiod can share the same set of clients and
    // informers. Sharing informers is especially important for load on the API server/Istiod itself.
    type Client interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  7. pkg/kube/kclient/client.go

    type fullClient[T controllers.Object] struct {
    	writeClient[T]
    	Informer[T]
    }
    
    type writeClient[T controllers.Object] struct {
    	client kube.Client
    }
    
    // handlerRegistration stores a handler, with the registration so it can be de-registered
    type handlerRegistration struct {
    	registration cache.ResourceEventHandlerRegistration
    	// handler is the actual handler. Note this does NOT have the filtering applied.
    	handler cache.ResourceEventHandler
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-egress/values.yaml

        # system-node-critical, it is better to configure this in order to make sure your Istio pods
        # will not be killed because of low priority class.
        # Refer to https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass
        # for more detail.
        priorityClassName: ""
    
        proxy:
          image: proxyv2
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. operator/cmd/mesh/install.go

    		return fmt.Errorf("errors occurred during operation")
    	}
    
    	// Previously we may install IOP file from the old version of istioctl. Now since we won't install IOP file
    	// anymore, and it didn't provide much value, we can delete it if it exists.
    	reconciler.DeleteIOPInClusterIfExists(iop)
    
    	opts.ProgressLog.SetState(progress.StateComplete)
    
    	return nil
    }
    
    func savedIOPName(iop *v1alpha12.IstioOperator) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/networkfilter_test.go

    						Host: "test.com",
    						Port: &networking.PortSelector{
    							Number: 8888,
    						},
    					},
    					Weight: 50,
    				},
    			},
    			"test.com.ns", // No stat pattern will be applied for multiple routes, as it will be always be name.namespace.
    		},
    		{
    			"service pattern, multiple routes",
    			"%SERVICE%",
    			[]*networking.RouteDestination{
    				{
    					Destination: &networking.Destination{
    						Host: "test.com",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top