Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for configSource (0.28 sec)

  1. istioctl/pkg/config/config.go

    	fmt.Fprintf(w, "FLAG\tVALUE\tFROM\n")
    	for _, flag := range keys {
    		v := settableFlags[flag]
    		fmt.Fprintf(w, "%s\t%s\t%v\n", flag, viper.GetString(flag), configSource(flag, v))
    	}
    	return w.Flush()
    }
    
    func configSource(flag string, v env.VariableInfo) string {
    	// Environment variables have high precedence in Viper
    	if v.IsSet() {
    		return "$" + v.GetName()
    	}
    
    	if viper.InConfig(flag) {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sun Jul 30 12:16:07 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/values.yaml

        # JWKS URIs.
        jwksResolverExtraRootCA: ""
    
        # This is used to set the source of configuration for
        # the associated address in configSource, if nothing is specified
        # the default MCP is assumed.
        configSource:
          subscribedResources: []
    
        # The following is used to limit how long a sidecar can be connected
        # to a pilot. It balances out load across pilot instances at the cost of
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 16:58:23 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/values.yaml

        # JWKS URIs.
        jwksResolverExtraRootCA: ""
        # This is used to set the source of configuration for
        # the associated address in configSource, if nothing is specified
        # the default MCP is assumed.
        configSource:
          subscribedResources: []
        # The following is used to limit how long a sidecar can be connected
        # to a pilot. It balances out load across pilot instances at the cost of
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 16:58:23 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      optional NodeConfigSource lastKnownGood = 3;
    
      // Error describes any problems reconciling the Spec.ConfigSource to the Active config.
      // Errors may occur, for example, attempting to checkpoint Spec.ConfigSource to the local Assigned
      // record, attempting to checkpoint the payload associated with Spec.ConfigSource, attempting
      // to load or validate the Assigned config, etc.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.11.md

    * Change seccomp annotation from "docker/default" to "runtime/default"...
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Feb 06 06:04:15 GMT 2020
    - 328.4K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    provide a root certificate # in PEM format. This will then be trusted by pilot when resolving # JWKS URIs. jwksResolverExtraRoo: "" # This is used to set the source of configuration for # the associated address in configSource, if nothing is specified # the default MCP is assumed. configSource: subscribedResources: [] plugins: [] # The following is used to limit how long a sidecar can be connected # to a pilot. It balances out load across pilot instances at the cost of # increasing system churn. keepaliveMaxServerCo:...
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
  7. CHANGELOG/CHANGELOG-1.8.md

    * Adds (alpha feature) the ability to dynamically configure Kubelets by enabling the DynamicKubeletConfig feature gate, posting a ConfigMap to the API server, and setting the spec.configSource field on Node objects. See the proposal at https://github.com/kubernetes/community/blob/master/contributors/design-proposals/node/dynamic-kubelet-configuration.md for details. ([#46254](https://github.com/kubernetes/kubernetes/pull/46254), [@m...
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Feb 20 15:45:02 GMT 2024
    - 312.2K bytes
    - Viewed (1)
Back to top