Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ClientCAFile (0.2 sec)

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

    		Factor:   1.5,
    		Jitter:   0.2,
    		Steps:    5,
    	}
    }
    
    type RequestHeaderAuthenticationOptions struct {
    	// ClientCAFile is the root certificate bundle to verify client certificates on incoming requests
    	// before trusting usernames in headers.
    	ClientCAFile string
    
    	UsernameHeaders     []string
    	GroupHeaders        []string
    	ExtraHeaderPrefixes []string
    	AllowedNames        []string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/helpers_test.go

    var (
    	// KubeletConfiguration fields that contain file paths. If you update this, also update KubeletConfigurationPathRefs!
    	kubeletConfigurationPathFieldPaths = sets.New[string](
    		"StaticPodPath",
    		"Authentication.X509.ClientCAFile",
    		"TLSCertFile",
    		"TLSPrivateKeyFile",
    		"ResolverConfig",
    		"PodLogsDir",
    	)
    
    	// KubeletConfiguration fields that do not contain file paths.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. pkg/kubeapiserver/options/authentication_test.go

    			UsernameHeaders:     []string{"x-remote-user"},
    			GroupHeaders:        []string{"x-remote-group"},
    			ExtraHeaderPrefixes: []string{"x-remote-extra-"},
    			ClientCAFile:        "testdata/root.pem",
    			AllowedNames:        []string{"kube-aggregator"},
    		},
    		ServiceAccounts: &ServiceAccountAuthenticationOptions{
    			Lookup:  true,
    			Issuers: []string{"http://foo.bar.com"},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  4. cmd/kube-apiserver/app/testing/testserver.go

    		if err := os.WriteFile(proxyCACertFile, testutil.EncodeCertPEM(proxySigningCert), 0644); err != nil {
    			return result, err
    		}
    		s.Authentication.RequestHeader.ClientCAFile = proxyCACertFile
    
    		// give the kube api server an "identity" it can use to for request header auth
    		// so that aggregated api servers can understand who the calling user is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/types.go

    type KubeletX509Authentication struct {
    	// clientCAFile is the path to a PEM-encoded certificate bundle. If set, any request presenting a client certificate
    	// signed by one of the authorities in the bundle is authenticated with a username corresponding to the CommonName,
    	// and groups corresponding to the Organization in the client certificate.
    	ClientCAFile string
    }
    
    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. cmd/kubelet/app/options/options.go

    		"The duration to cache responses from the webhook token authenticator.")
    	fs.StringVar(&c.Authentication.X509.ClientCAFile, "client-ca-file", c.Authentication.X509.ClientCAFile, ""+
    		"If set, any request presenting a client certificate signed by one of the authorities in the client-ca-file "+
    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