Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for ClientCAFile (0.23 sec)

  1. 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)
  2. 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)
  3. hack/local-up-cluster.sh

            echo "    enabled: true"
          else
            echo "    enabled: false"
          fi
          echo "  x509:"
          if [[ -n "${CLIENT_CA_FILE:-}" ]]; then
            echo "    clientCAFile: \"${CLIENT_CA_FILE}\""
          else
            echo "    clientCAFile: \"${CERT_DIR}/client-ca.crt\""
          fi
    
          # authorization
          if [[ "${KUBELET_AUTHORIZATION_WEBHOOK:-}" != "false" ]]; then
            echo "authorization:"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. 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)
  5. cluster/gce/util.sh

    }
    
    # cat the Kubelet config yaml for linux nodes
    function print-linux-node-kubelet-config {
      # Keep authentication.x509.clientCAFile in sync with CA_CERT_BUNDLE_PATH in configure-helper.sh
      cat <<EOF
    staticPodPath: /etc/kubernetes/manifests
    authentication:
      x509:
        clientCAFile: /etc/srv/kubernetes/pki/ca-certificates.crt
    EOF
    }
    
    # cat the Kubelet config yaml for windows nodes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    		Schema: spec.Schema{
    			SchemaProps: spec.SchemaProps{
    				Type: []string{"object"},
    				Properties: map[string]spec.Schema{
    					"clientCAFile": {
    						SchemaProps: spec.SchemaProps{
    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