Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 123 for caFile (0.08 sec)

  1. security/pkg/nodeagent/cache/secretcache_test.go

    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/pkg/testcerts"
    	"istio.io/istio/security/pkg/nodeagent/caclient/providers/mock"
    	"istio.io/istio/security/pkg/nodeagent/cafile"
    	pkiutil "istio.io/istio/security/pkg/pki/util"
    )
    
    func TestWorkloadAgentGenerateSecret(t *testing.T) {
    	fakeCACli, err := mock.NewMockCAClient(time.Hour, true)
    	var got, want []byte
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta3/doc.go

    //	    -  "ec2-10-100-0-1.compute-1.amazonaws.com"
    //	    peerCertSANs:
    //	    - "10.100.0.1"
    //	  # external:
    //	    # endpoints:
    //	    # - "10.100.0.1:2379"
    //	    # - "10.100.0.2:2379"
    //	    # caFile: "/etcd/kubernetes/pki/etcd/etcd-ca.crt"
    //	    # certFile: "/etcd/kubernetes/pki/etcd/etcd.crt"
    //	    # keyFile: "/etcd/kubernetes/pki/etcd/etcd.key"
    //	networking:
    //	  serviceSubnet: "10.96.0.0/16"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 13:30:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. pkg/kubeapiserver/options/authentication_test.go

    			CacheTTL:   180000000000,
    			ConfigFile: "/token-webhook-config",
    		},
    		BootstrapToken: &BootstrapTokenAuthenticationOptions{
    			Enable: false,
    		},
    		OIDC: &OIDCAuthenticationOptions{
    			CAFile:        "testdata/root.pem",
    			UsernameClaim: "sub",
    			SigningAlgs:   []string{"RS256"},
    			IssuerURL:     "https://testIssuerURL",
    			ClientID:      "testClientID",
    		},
    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/kubeadm/app/apis/kubeadm/types.go

    type ExternalEtcd struct {
    
    	// Endpoints of etcd members. Useful for using external etcd.
    	// If not provided, kubeadm will run etcd in a static pod.
    	Endpoints []string
    	// CAFile is an SSL Certificate Authority file used to secure etcd communication.
    	CAFile string
    	// CertFile is an SSL certification file used to secure etcd communication.
    	CertFile string
    	// KeyFile is an SSL key file used to secure etcd communication.
    	KeyFile string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/etcd/local_test.go

    				KubernetesVersion: "v1.7.0",
    				Etcd: kubeadmapi.Etcd{
    					External: &kubeadmapi.ExternalEtcd{
    						Endpoints: []string{
    							"https://etcd-instance:2379",
    						},
    						CAFile:   "/etc/kubernetes/pki/etcd/ca.crt",
    						CertFile: "/etc/kubernetes/pki/etcd/apiserver-etcd-client.crt",
    						KeyFile:  "/etc/kubernetes/pki/etcd/apiserver-etcd-client.key",
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //	    -  "ec2-10-100-0-1.compute-1.amazonaws.com"
    //	    peerCertSANs:
    //	    - "10.100.0.1"
    //	  # external:
    //	    # endpoints:
    //	    # - "10.100.0.1:2379"
    //	    # - "10.100.0.2:2379"
    //	    # caFile: "/etcd/kubernetes/pki/etcd/etcd-ca.crt"
    //	    # certFile: "/etcd/kubernetes/pki/etcd/etcd.crt"
    //	    # keyFile: "/etcd/kubernetes/pki/etcd/etcd.key"
    //	networking:
    //	  serviceSubnet: "10.96.0.0/16"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-kubeapiserver.sh

          params_ref+=" --etcd-servers=${ETCD_SERVERS:-https://127.0.0.1:2379}"
          params_ref+=" --etcd-cafile=${ETCD_APISERVER_CA_CERT_PATH}"
          params_ref+=" --etcd-certfile=${ETCD_APISERVER_CLIENT_CERT_PATH}"
          params_ref+=" --etcd-keyfile=${ETCD_APISERVER_CLIENT_KEY_PATH}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/etcd3.go

    func startCompactorOnce(c storagebackend.TransportConfig, interval time.Duration) (func(), error) {
    	compactorsMu.Lock()
    	defer compactorsMu.Unlock()
    
    	key := fmt.Sprintf("%v", c) // gives: {[server1 server2] keyFile certFile caFile}
    	if compactor, foundBefore := compactors[key]; !foundBefore || compactor.interval > interval {
    		compactorClient, err := newETCD3Client(c)
    		if err != nil {
    			return nil, err
    		}
    
    		if foundBefore {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:56:39 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    	fs.StringVar(&s.StorageConfig.Transport.CertFile, "etcd-certfile", s.StorageConfig.Transport.CertFile,
    		"SSL certification file used to secure etcd communication.")
    
    	fs.StringVar(&s.StorageConfig.Transport.TrustedCAFile, "etcd-cafile", s.StorageConfig.Transport.TrustedCAFile,
    		"SSL Certificate Authority file used to secure etcd communication.")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    					CertFile:  "/some/file.crt",
    				},
    			},
    			expectedErrors: true,
    		},
    		{
    			name: "setting .Etcd.External.CertFile and .Etcd.External.KeyFile requires .Etcd.External.CAFile",
    			etcd: &kubeadmapi.Etcd{
    				External: &kubeadmapi.ExternalEtcd{
    					Endpoints: []string{"https://external.etcd1:2379", "https://external.etcd2:2379"},
    					CertFile:  "/some/file.crt",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
Back to top