Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for KubeletAuthentication (0.16 sec)

  1. pkg/kubelet/apis/config/zz_generated.deepcopy.go

    func (in *KubeletAuthentication) DeepCopyInto(out *KubeletAuthentication) {
    	*out = *in
    	out.X509 = in.X509
    	out.Webhook = in.Webhook
    	out.Anonymous = in.Anonymous
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KubeletAuthentication.
    func (in *KubeletAuthentication) DeepCopy() *KubeletAuthentication {
    	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)
  2. pkg/kubelet/apis/config/types.go

    	// cacheUnauthorizedTTL is the duration to cache 'unauthorized' responses from the webhook authorizer.
    	CacheUnauthorizedTTL metav1.Duration
    }
    
    // KubeletAuthentication holds the Kubetlet Authentication setttings.
    type KubeletAuthentication struct {
    	// x509 contains settings related to x509 client certificate authentication
    	X509 KubeletX509Authentication
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top