Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ETCDKey (0.08 sec)

  1. cluster/gce/gci/apiserver_etcd_test.go

    				CAKey:             "CAKey",
    				CACert:            "CACert",
    				CACertPath:        "CACertPath",
    				APIServerKey:      "APIServerKey",
    				APIServerCert:     "APIServerCert",
    				ETCDKey:           "ETCDKey",
    				ETCDCert:          "ETCDCert",
    				ETCDServers:       "https://127.0.0.1:2379",
    				APIServerKeyPath:  "APIServerKeyPath",
    				APIServerCertPath: "APIServerCertPath",
    			},
    			want: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 18 11:14:24 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  2. cluster/gce/gci/testdata/kube-apiserver/etcd.template

    readonly ETCD_APISERVER_CA_KEY={{.CAKey}}
    readonly ETCD_APISERVER_CA_CERT={{.CACert}}
    readonly ETCD_APISERVER_SERVER_KEY={{.APIServerKey}}
    readonly ETCD_APISERVER_SERVER_CERT={{.APIServerCert}}
    readonly ETCD_APISERVER_CLIENT_KEY={{.ETCDKey}}
    readonly ETCD_APISERVER_CLIENT_CERT={{.ETCDCert}}
    readonly ETCD_SERVERS={{.ETCDServers}}
    readonly ETCD_APISERVER_CA_CERT_PATH={{.CACertPath}}
    readonly ETCD_APISERVER_CLIENT_CERT_PATH={{.APIServerCertPath}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 18 11:14:24 UTC 2021
    - 819 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/tls_test.go

    		t.Fatal(err)
    	}
    	certFile = path.Join(tempDir, "etcdcert.pem")
    	if err := ioutil.WriteFile(certFile, []byte(testingcert.CertFileContent), 0644); err != nil {
    		t.Fatal(err)
    	}
    	keyFile = path.Join(tempDir, "etcdkey.pem")
    	if err := ioutil.WriteFile(keyFile, []byte(testingcert.KeyFileContent), 0644); err != nil {
    		t.Fatal(err)
    	}
    	caFile = path.Join(tempDir, "ca.pem")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top