Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 597 for clientCert (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    	// +optional
    	ClientKey string
    
    	// clientCert is the file location of the client certificate to authenticate with the konnectivity server
    	// Must be absent/empty if TCPTransport.URL is prefixed with http://
    	// Must be configured if TCPTransport.URL is prefixed with https://
    	// +optional
    	ClientCert string
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. internal/config/lambda/parse.go

    		}
    
    		webhookArgs := target.WebhookArgs{
    			Enable:     enabled,
    			Endpoint:   *url,
    			Transport:  transport,
    			AuthToken:  env.Get(authEnv, kv.Get(target.WebhookAuthToken)),
    			ClientCert: env.Get(clientCertEnv, kv.Get(target.WebhookClientCert)),
    			ClientKey:  env.Get(clientKeyEnv, kv.Get(target.WebhookClientKey)),
    		}
    		if err = webhookArgs.Validate(); err != nil {
    			return nil, err
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/zz_generated.conversion.go

    }
    
    func autoConvert_v1alpha1_TLSConfig_To_apiserver_TLSConfig(in *TLSConfig, out *apiserver.TLSConfig, s conversion.Scope) error {
    	out.CABundle = in.CABundle
    	out.ClientKey = in.ClientKey
    	out.ClientCert = in.ClientCert
    	return nil
    }
    
    // Convert_v1alpha1_TLSConfig_To_apiserver_TLSConfig is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/webhook/certs_test.go

    NYtSGQKBgBUF/6/HQOCnoHjg9VE5oIpp0c0zWOnHp+9vqrGJGfkMQnz5OF+bEK7j
    oZ6aymuKC93HB05wB3mxOwNwBGDC6LsaMkzyKuD3YNBXgROAnsTl7FG4j/O15L58
    6BGb7UYXGw0RqrasgoLtzL5/3eac/SFgfaLcNtbdk3orGuKPGU3A
    -----END RSA PRIVATE KEY-----`)
    
    var clientCert = []byte(`-----BEGIN CERTIFICATE-----
    MIIDFDCCAfygAwIBAgIUTJoqwFusJcupNCs/u39LBFrkZEYwDQYJKoZIhvcNAQEL
    BQAwGzEZMBcGA1UEAwwQd2ViaG9va190ZXN0c19jYTAgFw0yMjAzMjUxNTMzMjla
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 14:39:30 UTC 2022
    - 16K bytes
    - Viewed (0)
  5. internal/logger/target/http/http.go

    	Name       string            `json:"name"`
    	UserAgent  string            `json:"userAgent"`
    	Endpoint   *xnet.URL         `json:"endpoint"`
    	AuthToken  string            `json:"authToken"`
    	ClientCert string            `json:"clientCert"`
    	ClientKey  string            `json:"clientKey"`
    	BatchSize  int               `json:"batchSize"`
    	QueueSize  int               `json:"queueSize"`
    	QueueDir   string            `json:"queueDir"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    	// +optional
    	ClientKey string `json:"clientKey,omitempty"`
    
    	// clientCert is the file location of the client certificate to be used in mtls handshakes with the konnectivity server.
    	// Must be absent/empty if TCPTransport.URL is prefixed with http://
    	// Must be configured if TCPTransport.URL is prefixed with https://
    	// +optional
    	ClientCert string `json:"clientCert,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. cmd/kube-scheduler/app/options/options_test.go

    					},
    					HTTP2MaxStreamsPerConnection: 47,
    				}).WithLoopback(),
    				Authentication: &apiserveroptions.DelegatingAuthenticationOptions{
    					CacheTTL:   10 * time.Second,
    					ClientCert: apiserveroptions.ClientCertAuthenticationOptions{},
    					RequestHeader: apiserveroptions.RequestHeaderAuthenticationOptions{
    						UsernameHeaders:     []string{"x-remote-user"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/types.go

    	// +optional
    	ClientKey string `json:"clientKey,omitempty"`
    
    	// clientCert is the file location of the client certificate to be used in mtls handshakes with the konnectivity server.
    	// Must be absent/empty if TCPTransport.URL is prefixed with http://
    	// Must be configured if TCPTransport.URL is prefixed with https://
    	// +optional
    	ClientCert string `json:"clientCert,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  9. pkg/controlplane/apiserver/options/options_test.go

    			EnableContentionProfiling: true,
    		},
    		Authentication: &kubeoptions.BuiltInAuthenticationOptions{
    			Anonymous: &kubeoptions.AnonymousAuthenticationOptions{
    				Allow: false,
    			},
    			ClientCert: &apiserveroptions.ClientCertAuthenticationOptions{
    				ClientCA: "/client-ca",
    			},
    			WebHook: &kubeoptions.WebHookAuthenticationOptions{
    				CacheTTL:     180000000000,
    				ConfigFile:   "/token-webhook-config",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. tests/integration/security/util/framework.go

    		TLSSettings: &common.TLSSettings{
    			// Echo has these test certs baked into the docker image
    			RootCert:   mustReadCert("root-cert.pem"),
    			ClientCert: mustReadCert("cert-chain.pem"),
    			Key:        mustReadCert("key.pem"),
    			// Override hostname to match the SAN in the cert we are using
    			Hostname: "server.default.svc",
    		},
    		Subsets: []echo.SubsetConfig{{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top