Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 123 for caFile (0.18 sec)

  1. pkg/scheduler/apis/config/types.go

    	ServerName string
    
    	// Server requires TLS client certificate authentication
    	CertFile string
    	// Server requires TLS client certificate authentication
    	KeyFile string
    	// Trusted root certificates for server
    	CAFile string
    
    	// CertData holds PEM-encoded bytes (typically read from a client certificate file).
    	// CertData takes precedence over CertFile
    	CertData []byte
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    type ExternalEtcd struct {
    	// Endpoints of etcd members. Required for ExternalEtcd.
    	Endpoints []string `json:"endpoints"`
    
    	// CAFile is an SSL Certificate Authority file used to secure etcd communication.
    	// Required if using a TLS connection.
    	CAFile string `json:"caFile"`
    
    	// CertFile is an SSL certification file used to secure etcd communication.
    	// Required if using a TLS connection.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. pkg/controlplane/apiserver/options/options_test.go

    		"--enable-priority-and-fairness=false",
    		"--enable-logs-handler=false",
    		"--etcd-keyfile=/var/run/kubernetes/etcd.key",
    		"--etcd-certfile=/var/run/kubernetes/etcdce.crt",
    		"--etcd-cafile=/var/run/kubernetes/etcdca.crt",
    		"--http2-max-streams-per-connection=42",
    		"--tracing-config-file=/var/run/kubernetes/tracing_config.yaml",
    		"--proxy-client-cert-file=/var/run/kubernetes/proxy.crt",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. pkg/kubelet/certificate/transport.go

    	clientConfig.CertData = nil
    	clientConfig.KeyData = nil
    	clientConfig.CertFile = ""
    	clientConfig.KeyFile = ""
    	clientConfig.CAData = nil
    	clientConfig.CAFile = ""
    	clientConfig.Insecure = false
    	clientConfig.NextProtos = nil
    
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 08 13:57:45 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/copycerts/copycerts.go

    		certs[kubeadmconstants.EtcdCAKeyName] = filepath.Join(certsDir, kubeadmconstants.EtcdCAKeyName)
    	} else {
    		certs[externalEtcdCA] = cfg.Etcd.External.CAFile
    		certs[externalEtcdCert] = cfg.Etcd.External.CertFile
    		certs[externalEtcdKey] = cfg.Etcd.External.KeyFile
    	}
    
    	return certs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 01 00:15:30 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.conversion.go

    }
    
    func autoConvert_v1beta4_ExternalEtcd_To_kubeadm_ExternalEtcd(in *ExternalEtcd, out *kubeadm.ExternalEtcd, s conversion.Scope) error {
    	out.Endpoints = *(*[]string)(unsafe.Pointer(&in.Endpoints))
    	out.CAFile = in.CAFile
    	out.CertFile = in.CertFile
    	out.KeyFile = in.KeyFile
    	return nil
    }
    
    // Convert_v1beta4_ExternalEtcd_To_kubeadm_ExternalEtcd is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  7. pkg/istio-agent/agent_test.go

    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/pkg/version"
    	"istio.io/istio/security/pkg/credentialfetcher/plugin"
    	"istio.io/istio/security/pkg/nodeagent/cache"
    	"istio.io/istio/security/pkg/nodeagent/cafile"
    	"istio.io/istio/security/pkg/nodeagent/sds"
    	"istio.io/istio/security/pkg/nodeagent/test/mock"
    	pkiutil "istio.io/istio/security/pkg/pki/util"
    	"istio.io/istio/tests/util/leak"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/controlplane/volumes.go

    func getEtcdCertVolumes(etcdCfg *kubeadmapi.ExternalEtcd, k8sCertificatesDir string) ([]v1.Volume, []v1.VolumeMount) {
    	certPaths := []string{etcdCfg.CAFile, etcdCfg.CertFile, etcdCfg.KeyFile}
    	certDirs := sets.New[string]()
    	for _, certPath := range certPaths {
    		certDir := filepath.ToSlash(filepath.Dir(certPath))
    		// Ignore ".", which is the result of passing an empty path.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    type ExternalEtcd struct {
    	// Endpoints of etcd members. Required for ExternalEtcd.
    	Endpoints []string `json:"endpoints"`
    
    	// CAFile is an SSL Certificate Authority file used to secure etcd communication.
    	// Required if using a TLS connection.
    	CAFile string `json:"caFile"`
    
    	// CertFile is an SSL certification file used to secure etcd communication.
    	// Required if using a TLS connection.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/preflight/checks_test.go

    				rt.output,
    				buf.String(),
    			)
    		}
    	}
    }
    func TestConfigRootCAs(t *testing.T) {
    	f, err := os.CreateTemp(os.TempDir(), "kubeadm-external-etcd-test-cafile")
    	if err != nil {
    		t.Errorf("failed configRootCAs:\n\texpected: succeed creating temp CA file\n\tactual:%v", err)
    	}
    	defer utiltesting.CloseAndRemove(t, f)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
Back to top