Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 390 for It (0.12 sec)

  1. 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)
  2. manifests/charts/istio-control/istio-discovery/templates/configmap.yaml

        # When processing a leaf namespace Istio will search for declarations in that namespace first
        # and if none are found it will search in the root namespace. Any matching declaration found in the root namespace
        # is processed as if it were declared in the leaf namespace.
        rootNamespace: {{ .Values.meshConfig.rootNamespace | default .Values.global.istioNamespace }}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. cni/pkg/util/podutil.go

    		return false
    	}
    	return true
    }
    
    // PodRedirectionActive reports on whether the pod _has_ actually been configured for traffic redirection.
    //
    // That is, have we annotated it after successfully sending it to the node proxy and set up iptables rules.
    //
    // If you just want to know if the pod _should be_ configured for traffic redirection, see PodRedirectionEnabled
    func PodRedirectionActive(pod *corev1.Pod) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 17:18:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. security/pkg/server/ca/server.go

    // CreateCertificate handles an incoming certificate signing request (CSR). It does
    // authentication and authorization. Upon validated, signs a certificate that:
    // the SAN is the identity of the caller in authentication result.
    // the subject public key is the public key in the CSR.
    // the validity duration is the ValidityDuration in request, or default value if the given duration is invalid.
    // it is signed by the CA signing key.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:26 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. common/Makefile.common.mk

    # If you're looking at this file in a different repo and want to make a change, please go to the
    # common-files repo, make the change there and check it in. Then come back to this repo and run
    # "make update-common".
    
    # Copyright Istio Authors
    #
    # Licensed under the Apache License, Version 2.0 (the "License");
    # you may not use this file except in compliance with the License.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  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/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)
  10. 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)
Back to top