Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 248 for It (0.02 sec)

  1. pkg/dns/client/dns.go

    		out.Insert(altHost + ".")
    	}
    	return out
    }
    
    // Given a host, this function first decides if the host is part of our service registry.
    // If it is not part of the registry, return nil so that caller queries upstream. If it is part
    // of registry, we will look it up in one of our tables, failing which we will return NXDOMAIN.
    func (table *LookupTable) lookupHost(qtype uint16, hostname string) ([]dns.RR, bool) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. pkg/config/analysis/msg/messages.gen.go

    	NamespaceNotInjected = diag.NewMessageType(diag.Info, "IST0102", "The namespace is not enabled for Istio injection. Run 'kubectl label namespace %s istio-injection=enabled' to enable it, or 'kubectl label namespace %s istio-injection=disabled' to explicitly mark it as not needing injection.")
    
    	// PodMissingProxy defines a diag.MessageType for message "PodMissingProxy".
    	// Description: A pod is missing the Istio proxy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  3. istioctl/pkg/waypoint/waypoint.go

    		ns := ctx.NamespaceOrDefault(ctx.Namespace())
    		if ctx.Namespace() == "" && !forApply {
    			ns = ""
    		}
    		// If a user sets the waypoint name to an empty string, set it to the default namespace waypoint name.
    		if waypointName == "" {
    			waypointName = constants.DefaultNamespaceWaypoint
    		} else if waypointName == "none" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pilot/cmd/pilot-agent/status/server.go

    		if err != nil {
    			return nil, err
    		}
    		if prober.HTTPGet != nil {
    			d := ProbeDialer()
    			d.LocalAddr = s.upstreamLocalAddress
    			// nolint: gosec
    			// This is matching Kubernetes. It is a reasonable usage of this, as it is just a health check over localhost.
    			transport, err := setTransportDefaults(&http.Transport{
    				TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
    				DialContext:     d.DialContext,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
Back to top