Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 161 for It (0.05 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    	// so we can exit early and have the WorkloadRbac xDS server push its static strict policy.
    	// Note that this doesn't actually attach the policy to any workload; it just makes it available
    	// to ztunnel in case a workload needs it.
    	foundNonStrictPortmTLS := false
    	for port, mtls := range pa.PortLevelMtls {
    		switch portMtlsMode := mtls.GetMode(); {
    		case portMtlsMode == v1beta1.PeerAuthentication_MutualTLS_STRICT:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. pkg/config/model.go

    	if !f {
    		// This is a global object, and always included
    		return true
    	}
    	// If the revision is empty, this means we don't specify a revision, and
    	// we should always include it
    	if rev == "" {
    		return true
    	}
    	// Otherwise, only return true if revisions equal
    	return configEnv == rev
    }
    
    func ObjectInRevision(o *Config, rev string) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/ingress/controller.go

    //
    // The sync of Ingress objects to IP is done by status.go
    // the 'ingress service' name is used to get the IP of the Service
    // If ingress service is empty, it falls back to NodeExternalIP list, selected using the labels.
    // This is using 'namespace' of pilot - but seems to be broken (never worked), since it uses Pilot's pod labels
    // instead of the ingress labels.
    
    // Follows mesh.IngressControllerMode setting to enable - OFF|STRICT|DEFAULT.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. pkg/kube/inject/inject.go

    	// over it and stop at the first match
    	// Takes precedence over AlwaysInjectSelector.
    	NeverInjectSelector []metav1.LabelSelector `json:"neverInjectSelector"`
    
    	// AlwaysInjectSelector: Forces the injection on pods whose labels match this selector.
    	// It's an array of label selectors, that will be OR'ed, meaning we will iterate
    	// over it and stop at the first match
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  5. Makefile.core.mk

    warning+=Googlers: go/installdocker\#the-version-of-docker-thats-installed-is-old-eg-1126
    endif
    # The old docker issue manifests as not being able to run *any* binary. So we can test
    # by trying to run a trivial program and ensuring it actually ran. If not, emit our warning.
    # Note: we cannot do anything like $(shell docker version) to check, since that would also fail.
    CAN_RUN := $(shell echo "can I run echo")
    ifeq ($(CAN_RUN),)
    $(error $(warning))
    endif
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  6. pkg/kube/kclient/client_test.go

    	// We will have 2+ informer handlers: the filter itself, and N controllers.
    	// The ordering of handlers if random. If the filter receives the event first, it could suppress re-sending the namespace event,
    	// and the usual "add" notification would pass the filter.
    	// However, if the ordering is backwards there, it would not pass the filter.
    	// We tradeoff the possibility for 2 add events instead of possibly missing events.
    	retry.UntilOrFail(t, func() bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. pilot/pkg/xds/endpoints/endpoint_builder.go

    	// against such behavior and returns nil. When the updated cluster warms up in Envoy, it would update with new endpoints
    	// automatically.
    	// Gateways use EDS for Passthrough cluster. So we should allow Passthrough here.
    	if b.IsDNSCluster() {
    		log.Infof("cluster %s in eds cluster, but its resolution now is updated to %v, skipping it.", b.clusterName, b.service.Resolution)
    		return nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  8. cni/README.md

        - the actual code is in pkg/install - including a readiness probe, monitoring.
        - it also sets up a UDS socket for istio-cni to send logs to this container.
        - based on config, it may run the 'repair' controller that detects pods where istio setup fails and restarts them, or created in corner cases.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. pkg/bootstrap/instance_test.go

    		},
    		{
    			pattern:     regexp.MustCompile(`("path": ".*/XDS")`),
    			replacement: []byte(`"path": "/tmp/XDS"`),
    		},
    	}
    	if excludeLocality {
    		// zone and region can vary based on the environment, so it shouldn't be considered in the diff.
    		replacements = append(replacements,
    			regexReplacement{
    				pattern:     regexp.MustCompile(`"zone": ".+"`),
    				replacement: []byte("\"zone\": \"\""),
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. cni/pkg/nodeagent/ztunnelserver.go

    	or when the ztunnel pod is restarted in the same pod (remove old entries when the same uid connects again, but with different boot id?)
    
    	save a queue of what needs to be sent to the ztunnel pod and send it one by one when it connects.
    
    	when a new ztunnel connects with different uid, only propagate deletes to older ztunnels.
    */
    
    type connMgr struct {
    	connectionSet map[*ZtunnelConnection]struct{}
    	latestConn    *ZtunnelConnection
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top