Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for turn (0.07 sec)

  1. manifests/charts/istio-control/istio-discovery/templates/NOTES.txt

        "meshConfig.defaultConfig.tracing.stackdriver.maxNumberOfMessageEvents" "Istio supported tracers"
    }}
    {{- range $dep, $replace := $deps }}
    {{- /* Complex logic to turn the string above into a null-safe traversal like ((.Values.global).certificates */}}
    {{- $res := tpl (print "{{" (repeat (split "." $dep | len) "(")  ".Values." (replace "." ")." $dep) ")}}") $}}
    {{- if not (eq $res "")}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. tests/integration/pilot/headers_test.go

    				BuildOrFail(t)
    			instance := instances[0]
    			proxyHeaders := sets.New(
    				"server",
    				"x-forwarded-client-cert",
    				"x-request-id",
    			)
    
    			allowedClientHeaders := sets.New(
    				// Envoy has no way to turn this off
    				"x-forwarded-proto",
    				// Metadata exchange: under discussion of how we can strip this, but for now there is no way
    				"x-envoy-peer-metadata",
    				"x-envoy-peer-metadata-id",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. tests/integration/security/file_mounted_certs/main_test.go

        controlPlaneAuthPolicy: "MUTUAL_TLS"
        proxyMetadata: ` + strings.Replace(ProxyMetadataJSON, "\n", "", -1) +
    		`
    values:
      global:
        pilotCertProvider: "mycopki"
      pilot:
        env:
          # We need to turn off the XDS Auth because test certificates only have a fixed/hardcoded identity, but the identity of the actual
          # deployed test services changes on each run due to a randomly generated namespace suffixes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. pilot/pkg/model/typed_xds_cache.go

    		}
    	}
    	size(l.store.Len())
    }
    
    func (l *lruCache[K]) ClearAll() {
    	l.mu.Lock()
    	defer l.mu.Unlock()
    	l.token = CacheToken(time.Now().UnixNano())
    	// Purge with an evict function would turn up to be pretty slow since
    	// it runs the function for every key in the store, might be better to just
    	// create a new store.
    	l.store = newLru(l.onEvict)
    	l.configIndex = map[ConfigHash]sets.Set[K]{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. pilot/pkg/xds/endpoints/endpoint_builder.go

    	// EDS to STRICT_DNS or LOGICAL_DNS. When pushEds is called before Envoy sends the updated cluster list via Endpoint request which in turn
    	// will update "Connection.Clusters", we might accidentally send EDS updates for STRICT_DNS cluster. This check guards
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  6. pilot/pkg/model/context.go

    	// this would return true only if there was a policy allowing `ingress-ns` to access Secrets in the `ns-name` namespace.
    	SecretAllowed(resourceName string, namespace string) bool
    }
    
    // OutboundListenerClass is a helper to turn a NodeType for outbound to a ListenerClass.
    func OutboundListenerClass(t NodeType) istionetworking.ListenerClass {
    	if t == Router {
    		return istionetworking.ListenerClassGateway
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener.go

    			listenerOpts.port.Port, listenerOpts.port.Protocol, currentListenerEntry.protocol, conflictType)
    		return
    	}
    
    	// In general, for handling conflicts we:
    	// * Turn on sniffing if its HTTP and TCP mixed
    	// * Merge filter chains
    	switch conflictType {
    	case NoConflict, AutoOverHTTP:
    		// This is a new entry (NoConflict), or completely overriding (AutoOverHTTP); add it to the map
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    			return nil, nil
    		})
    
    	validateFuncs = make(map[string]ValidateFunc)
    )
    
    type (
    	Warning    = agent.Warning
    	Validation = agent.Validation
    )
    
    // WrapWarning turns an error into a Validation as a warning
    func WrapWarning(e error) Validation {
    	return Validation{Warning: e}
    }
    
    func AppendValidation(v Validation, vs ...error) Validation {
    	return agent.AppendValidation(v, vs...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inputs/hello-probes-noProxyHoldApplication-ProxyConfig.yaml.20.template.gen.yaml

                  - pilot-agent
                  - wait
          {{- else if $nativeSidecar }}
            {{- /* preStop is called when the pod starts shutdown. Initialize drain. We will get SIGTERM once applications are torn down. */}}
            lifecycle:
              preStop:
                exec:
                  command:
                  - pilot-agent
                  - request
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inputs/hello-probes.yaml.18.template.gen.yaml

                  - pilot-agent
                  - wait
          {{- else if $nativeSidecar }}
            {{- /* preStop is called when the pod starts shutdown. Initialize drain. We will get SIGTERM once applications are torn down. */}}
            lifecycle:
              preStop:
                exec:
                  command:
                  - pilot-agent
                  - request
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top