Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,704 for confv1 (0.26 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/config.go

    			keys = append(keys, k)
    		}
    		sort.Strings(keys)
    		for _, k := range keys {
    			config.DefaultSecurity = append(config.DefaultSecurity, map[string][]string{k: {}})
    		}
    		if config.CommonResponses == nil {
    			config.CommonResponses = map[int]*spec3.Response{}
    		}
    		if _, exists := config.CommonResponses[http.StatusUnauthorized]; !exists {
    			config.CommonResponses[http.StatusUnauthorized] = &spec3.Response{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  2. pkg/kube/util_test.go

    func TestSanitizeKubeConfig(t *testing.T) {
    	cases := []struct {
    		name      string
    		config    api.Config
    		allowlist sets.String
    		want      api.Config
    		wantErr   bool
    	}{
    		{
    			name:    "empty",
    			config:  api.Config{},
    			want:    api.Config{},
    			wantErr: false,
    		},
    		{
    			name: "exec",
    			config: api.Config{
    				AuthInfos: map[string]*api.AuthInfo{
    					"default": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. docs/distributed/CONFIG.md

    > NOTE: MinIO environmental variables still take precedence over the `config.yaml` file, however `config.yaml` is preferred over MinIO internal config KV settings via `mc admin config set alias/ <sub-system>`.
    
    ### TODO
    
    In subsequent releases we are planning to extend this to provide things like
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 15:54:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/kubelet/config.go

    )
    
    // WriteConfigToDisk writes the kubelet config object down to a file
    // Used at "kubeadm init" and "kubeadm upgrade" time
    func WriteConfigToDisk(cfg *kubeadmapi.ClusterConfiguration, kubeletDir, patchesDir string, output io.Writer) error {
    	kubeletCfg, ok := cfg.ComponentConfigs[componentconfigs.KubeletGroup]
    	if !ok {
    		return errors.New("no kubelet component config found")
    	}
    
    	if err := kubeletCfg.Mutate(); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 02 12:34:30 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. internal/config/policy/opa/config.go

    }
    
    // Enabled returns if opa is enabled.
    func Enabled(kvs config.KVS) bool {
    	return kvs.Get(URL) != ""
    }
    
    // LookupConfig lookup Opa from config, override with any ENVs.
    func LookupConfig(kv config.KVS, transport *http.Transport, closeRespFn func(io.ReadCloser)) (Args, error) {
    	args := Args{}
    
    	if err := config.CheckValidKeys(config.PolicyOPASubSys, kv, DefaultKVS); err != nil {
    		return args, err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/config.go

    		return bytes.NewBuffer(content), nil
    	}
    	// there is no special config at all
    	return nil, nil
    }
    
    // ConfigFor returns a reader for the specified plugin.
    // If no specific configuration is present, we return a nil reader.
    func (p configProvider) ConfigFor(pluginName string) (io.Reader, error) {
    	// there is no config, so there is no potential config
    	if p.config == nil {
    		return nil, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. cmd/kube-apiserver/app/config.go

    	generatedopenapi "k8s.io/kubernetes/pkg/generated/openapi"
    )
    
    type Config struct {
    	Options options.CompletedOptions
    
    	Aggregator    *aggregatorapiserver.Config
    	KubeAPIs      *controlplane.Config
    	ApiExtensions *apiextensionsapiserver.Config
    
    	ExtraConfig
    }
    
    type ExtraConfig struct {
    }
    
    type completedConfig struct {
    	Options options.CompletedOptions
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 17:44:20 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/config.go

    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    	"cmd/internal/src"
    	"internal/buildcfg"
    )
    
    // A Config holds readonly compilation information.
    // It is created once, early during compilation,
    // and shared across all compilations.
    type Config struct {
    	arch           string // "amd64", etc.
    	PtrSize        int64  // 4 or 8; copy of cmd/internal/sys.Arch.PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/egressselector/config.go

    // incorrect file paths. It will return nil if it does not find anything wrong.
    func ValidateEgressSelectorConfiguration(config *apiserver.EgressSelectorConfiguration) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if config == nil {
    		return allErrs // Treating a nil configuration as valid
    	}
    	for _, service := range config.EgressSelections {
    		fldPath := field.NewPath("service", "connection")
    		switch service.Connection.ProxyProtocol {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  10. docs_src/settings/app03/config.py

    from pydantic_settings import BaseSettings
    
    
    class Settings(BaseSettings):
        app_name: str = "Awesome API"
        admin_email: str
        items_per_user: int = 50
    
        class Config:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 204 bytes
    - Viewed (0)
Back to top