Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for KubeletAnonymousAuthentication (0.34 sec)

  1. cmd/kubeadm/app/componentconfigs/kubelet_test.go

    					Authentication: kubeletconfig.KubeletAuthentication{
    						X509: kubeletconfig.KubeletX509Authentication{
    							ClientCAFile: constants.CACertName,
    						},
    						Anonymous: kubeletconfig.KubeletAnonymousAuthentication{
    							Enabled: ptr.To(kubeletAuthenticationAnonymousEnabled),
    						},
    						Webhook: kubeletconfig.KubeletWebhookAuthentication{
    							Enabled: ptr.To(kubeletAuthenticationWebhookEnabled),
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 10:26:46 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/v1beta1/zz_generated.conversion.go

    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1beta1.KubeletAnonymousAuthentication)(nil), (*config.KubeletAnonymousAuthentication)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1beta1_KubeletAnonymousAuthentication_To_config_KubeletAnonymousAuthentication(a.(*v1beta1.KubeletAnonymousAuthentication), b.(*config.KubeletAnonymousAuthentication), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/zz_generated.deepcopy.go

    func (in *KubeletAnonymousAuthentication) DeepCopyInto(out *KubeletAnonymousAuthentication) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeletAnonymousAuthentication.
    func (in *KubeletAnonymousAuthentication) DeepCopy() *KubeletAnonymousAuthentication {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 09 11:19:11 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				Address:            "0.0.0.0",
    				Port:               ports.KubeletPort,
    				Authentication: v1beta1.KubeletAuthentication{
    					Anonymous: v1beta1.KubeletAnonymousAuthentication{Enabled: utilpointer.Bool(false)},
    					Webhook: v1beta1.KubeletWebhookAuthentication{
    						Enabled:  utilpointer.Bool(true),
    						CacheTTL: metav1.Duration{Duration: 2 * time.Minute},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/types.go

    	Enabled bool
    	// cacheTTL enables caching of authentication results
    	CacheTTL metav1.Duration
    }
    
    // KubeletAnonymousAuthentication enables anonymous requests to the kubelet server.
    type KubeletAnonymousAuthentication struct {
    	// enabled allows anonymous requests to the kubelet server.
    	// Requests that are not rejected by another authentication method are treated as anonymous requests.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    							Default:     map[string]interface{}{},
    							Ref:         ref("k8s.io/kubelet/config/v1beta1.KubeletAnonymousAuthentication"),
    						},
    					},
    				},
    			},
    		},
    		Dependencies: []string{
    			"k8s.io/kubelet/config/v1beta1.KubeletAnonymousAuthentication", "k8s.io/kubelet/config/v1beta1.KubeletWebhookAuthentication", "k8s.io/kubelet/config/v1beta1.KubeletX509Authentication"},
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top