Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 114 for keyFiles (0.19 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta3/zz_generated.conversion.go

    	out.Endpoints = *(*[]string)(unsafe.Pointer(&in.Endpoints))
    	out.CAFile = in.CAFile
    	out.CertFile = in.CertFile
    	out.KeyFile = in.KeyFile
    	return nil
    }
    
    // Convert_v1beta3_ExternalEtcd_To_kubeadm_ExternalEtcd is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  2. cmd/common-main.go

    		var (
    			certFile = filepath.Join(root.Name(), file.Name(), publicCertFile)
    			keyFile  = filepath.Join(root.Name(), file.Name(), privateKeyFile)
    		)
    		if !isFile(certFile) || !isFile(keyFile) {
    			continue
    		}
    		if err = manager.AddCertificate(certFile, keyFile); err != nil {
    			err = fmt.Errorf("Unable to load TLS certificate '%s,%s': %w", certFile, keyFile, err)
    			bootLogIf(GlobalContext, err, logger.ErrorKind)
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  3. src/crypto/tls/tls.go

    // in the GODEBUG environment variable.
    func LoadX509KeyPair(certFile, keyFile string) (Certificate, error) {
    	certPEMBlock, err := os.ReadFile(certFile)
    	if err != nil {
    		return Certificate{}, err
    	}
    	keyPEMBlock, err := os.ReadFile(keyFile)
    	if err != nil {
    		return Certificate{}, err
    	}
    	return X509KeyPair(certPEMBlock, keyPEMBlock)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. security/pkg/pki/util/keycertbundle_test.go

    	// These key/cert contain workload key/cert, and a self-signed root cert,
    	// all with TTL 100 years.
    	rootCertFile1    = "../testdata/self-signed-root-cert.pem"
    	certChainFile1   = "../testdata/workload-cert.pem"
    	keyFile1         = "../testdata/workload-key.pem"
    	ecRootCertFile   = "../testdata/ec-root-cert.pem"
    	ecRootKeyFile    = "../testdata/ec-root-key.pem"
    	ecClientCertFile = "../testdata/ec-workload-cert.pem"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. pkg/scheduler/extender.go

    		cfg.TLSClientConfig.Insecure = config.TLSConfig.Insecure
    		cfg.TLSClientConfig.ServerName = config.TLSConfig.ServerName
    		cfg.TLSClientConfig.CertFile = config.TLSConfig.CertFile
    		cfg.TLSClientConfig.KeyFile = config.TLSConfig.KeyFile
    		cfg.TLSClientConfig.CAFile = config.TLSConfig.CAFile
    		cfg.TLSClientConfig.CertData = config.TLSConfig.CertData
    		cfg.TLSClientConfig.KeyData = config.TLSConfig.KeyData
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	// CertFile is an SSL certification file used to secure etcd communication.
    	// Required if using a TLS connection.
    	CertFile string `json:"certFile"`
    
    	// KeyFile is an SSL key file used to secure etcd communication.
    	// Required if using a TLS connection.
    	KeyFile string `json:"keyFile"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // JoinConfiguration contains elements describing a particular node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/options.go

    }
    
    // TLSOptions is optional TLS parameters for Istiod server.
    type TLSOptions struct {
    	// CaCertFile and related are set using CLI flags.
    	CaCertFile      string
    	CertFile        string
    	KeyFile         string
    	TLSCipherSuites []string
    	CipherSuits     []uint16 // This is the parsed cipher suites
    }
    
    var (
    	PodNamespace = env.Register("POD_NAMESPACE", constants.IstioSystemNamespace, "").Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/calloptions.go

    	// (without proxy) from naked client to test certificates issued by custom CA instead of the Istio self-signed CA.
    	Cert, Key, CaCert string
    
    	// Use the custom certificates file to make the call.
    	CertFile, KeyFile, CaCertFile string
    
    	// Skip verify peer's certificate.
    	InsecureSkipVerify bool
    
    	Alpn       []string
    	ServerName string
    }
    
    type HBONE struct {
    	Address string
    	Headers http.Header
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 13K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/controlplane/volumes_test.go

    		},
    	}
    
    	for _, rt := range tests {
    		t.Run(rt.name, func(t *testing.T) {
    			actualVol, actualVolMount := getEtcdCertVolumes(&kubeadmapi.ExternalEtcd{
    				CAFile:   rt.ca,
    				CertFile: rt.cert,
    				KeyFile:  rt.key,
    			}, k8sCertificatesDir)
    			if !reflect.DeepEqual(actualVol, rt.vol) {
    				t.Errorf(
    					"failed getEtcdCertVolumes:\n\texpected: %v\n\t  actual: %v",
    					rt.vol,
    					actualVol,
    				)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. internal/kms/config.go

    			if err != nil {
    				return nil, err
    			}
    			conf.GetClientCertificate = func(*tls.CertificateRequestInfo) (*tls.Certificate, error) { return &cert, nil }
    		} else {
    			loadX509KeyPair := func(certFile, keyFile string) (tls.Certificate, error) {
    				// Manually load the certificate and private key into memory.
    				// We need to check whether the private key is encrypted, and
    				// if so, decrypt it using the user-provided password.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top