Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ConfigurationMap (0.26 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/api_enablement.go

    // Given small aggregated API servers, this option isn't required for "normal" API servers
    type APIEnablementOptions struct {
    	RuntimeConfig cliflag.ConfigurationMap
    }
    
    func NewAPIEnablementOptions() *APIEnablementOptions {
    	return &APIEnablementOptions{
    		RuntimeConfig: make(cliflag.ConfigurationMap),
    	}
    }
    
    // AddFlags adds flags for a specific APIServer to the specified FlagSet
    func (s *APIEnablementOptions) AddFlags(fs *pflag.FlagSet) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 09:22:37 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. cmd/kubemark/app/hollow_node.go

    	fs.IntVar(&c.Burst, "kube-api-burst", 20, "Burst indicates maximum burst for throttle to the apiserver.")
    
    	bindableNodeLabels := cliflag.ConfigurationMap(c.NodeLabels)
    	fs.Var(&bindableNodeLabels, "node-labels", "Additional node labels")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. pkg/controlplane/apiserver/options/options_test.go

    			WebhookVersion:              "v1beta1",
    			WebhookRetryBackoff:         apiserveroptions.DefaultAuthWebhookRetryBackoff(),
    		},
    		APIEnablement: &apiserveroptions.APIEnablementOptions{
    			RuntimeConfig: cliflag.ConfigurationMap{},
    		},
    		EgressSelector: &apiserveroptions.EgressSelectorOptions{
    			ConfigFile: "/var/run/kubernetes/egress-selector/connectivity.yaml",
    		},
    		EnableLogsHandler:       false,
    		EnableAggregatorRouting: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. cmd/kube-apiserver/app/options/options_test.go

    				WebhookVersion:              "v1beta1",
    				WebhookRetryBackoff:         apiserveroptions.DefaultAuthWebhookRetryBackoff(),
    			},
    			APIEnablement: &apiserveroptions.APIEnablementOptions{
    				RuntimeConfig: cliflag.ConfigurationMap{},
    			},
    			EgressSelector: &apiserveroptions.EgressSelectorOptions{
    				ConfigFile: "/var/run/kubernetes/egress-selector/connectivity.yaml",
    			},
    			EnableLogsHandler:       false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. cmd/kubelet/app/options/options.go

    	fs.BoolVar(&f.SeccompDefault, "seccomp-default", f.SeccompDefault, "Enable the use of `RuntimeDefault` as the default seccomp profile for all workloads.")
    
    	bindableNodeLabels := cliflag.ConfigurationMap(f.NodeLabels)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top