Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for turn (0.05 sec)

  1. manifests/profiles/default.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      namespace: istio-system
    spec:
      hub: gcr.io/istio-testing
      tag: latest
    
      # Turn on default components: base, pilot, and ingress gateway
      components:
        base:
          enabled: true
        pilot:
          enabled: true
        # Istio Gateway feature
        ingressGateways:
        - name: istio-ingressgateway
          enabled: true
        egressGateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 744 bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. operator/README.md

    defines install time parameters like component and enablement and namespace, and K8s settings like resources, HPA spec etc. in a structured way.
    The simplest customization is to turn components on and off. For example, to turn on cni ([samples/cni-on.yaml](samples/cni-on.yaml):
    
    ```yaml
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        cni:
          enabled: true
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. pkg/log/config.go

    			for _, scope := range allScopes {
    				scope.SetLogCallers(true)
    			}
    		}
    
    		if scope, ok := allScopes[s]; ok {
    			scope.SetLogCallers(true)
    		}
    	}
    
    	// If gRPC logging is enabled, turn on gRPC logging automatically
    	if grpcScope.GetOutputLevel() != NoneLevel {
    		options.logGRPC = true
    	}
    
    	return nil
    }
    
    // processLevels breaks down an argument string into a set of scope & levels and then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. istioctl/pkg/multixds/gather.go

    		responses, err = queryDebugSynczViaAgents(all, dr, istioNamespace, kubeClient, centralOpts, options)
    	} else {
    		// Self-administered case.  Find all Istiods in revision using K8s, port-forward and call each in turn
    		responses, err = queryEachShard(all, dr, istioNamespace, kubeClient, centralOpts)
    	}
    	if err != nil {
    		if _, ok := err.(ControlPlaneNotFoundError); ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // risky unless you take great care to run this webhook on all hosts
      // which run an apiserver which might need to make calls to this
      // webhook. Such installs are likely to be non-portable, i.e., not easy
      // to turn up in a new cluster.
      //
      // The scheme must be "https"; the URL must begin with "https://".
      //
      // A path is optional, and if present may be any string permissible in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  10. 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)
Back to top