Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 323 for ucrt (1.03 sec)

  1. cluster/gce/util.sh

        "${CERT_DIR}/pki/ca.crt" \
        "${CERT_DIR}/pki/issued/${MASTER_NAME}.crt" \
        "${CERT_DIR}/pki/private/${MASTER_NAME}.key" \
        "${CERT_DIR}/pki/issued/kubelet.crt" \
        "${CERT_DIR}/pki/private/kubelet.key" \
        "${CERT_DIR}/pki/issued/kubecfg.crt" \
        "${CERT_DIR}/pki/private/kubecfg.key" \
        "${CERT_DIR}/pki/issued/kube-apiserver.crt" \
        "${CERT_DIR}/pki/private/kube-apiserver.key"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults_unix.go

    limitations under the License.
    */
    
    package v1beta4
    
    const (
    	// DefaultCACertPath defines default location of CA certificate on Linux
    	DefaultCACertPath = "/etc/kubernetes/pki/ca.crt"
    	// DefaultContainerRuntimeURLScheme defines default socket url prefix
    	DefaultContainerRuntimeURLScheme = "unix"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 11:33:30 UTC 2023
    - 876 bytes
    - Viewed (0)
  3. hack/local-up-cluster.sh

    # which should be able to be used as the CA to verify itself
    CERT_DIR=${CERT_DIR:-"/var/run/kubernetes"}
    ROOT_CA_FILE=${CERT_DIR}/server-ca.crt
    CLUSTER_SIGNING_CERT_FILE=${CLUSTER_SIGNING_CERT_FILE:-"${CERT_DIR}/client-ca.crt"}
    CLUSTER_SIGNING_KEY_FILE=${CLUSTER_SIGNING_KEY_FILE:-"${CERT_DIR}/client-ca.key"}
    # Reuse certs will skip generate new ca/cert files under CERT_DIR
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/constants/constants.go

    	// CACertName defines certificate name
    	CACertName = "ca.crt"
    	// CAKeyName defines certificate name
    	CAKeyName = "ca.key"
    
    	// APIServerCertAndKeyBaseName defines API's server certificate and key base name
    	APIServerCertAndKeyBaseName = "apiserver"
    	// APIServerCertName defines API's server certificate name
    	APIServerCertName = "apiserver.crt"
    	// APIServerKeyName defines API's server key name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  5. docs/tls/README.md

    **Note:**
    
    * Location of custom certs directory can be specified using `--certs-dir` command line option.
    * Inside the `certs` directory, the private key must by named `private.key` and the public key must be named `public.crt`.
    * A certificate signed by a CA contains information about the issued identity (e.g. name, expiry, public key) and any intermediate certificates. The root CA is not included.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/v1beta3/defaults_unix.go

    limitations under the License.
    */
    
    package v1beta3
    
    const (
    	// DefaultCACertPath defines default location of CA certificate on Linux
    	DefaultCACertPath = "/etc/kubernetes/pki/ca.crt"
    	// DefaultContainerRuntimeURLScheme defines default socket url prefix
    	DefaultContainerRuntimeURLScheme = "unix"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 03 19:15:03 UTC 2022
    - 876 bytes
    - Viewed (0)
  7. helm/minio/templates/secrets.yaml

    type: Opaque
    data:
      rootUser: {{ include "minio.root.username" . | b64enc | quote }}
      rootPassword: {{ include "minio.root.password" . | b64enc | quote }}
      {{- if .Values.etcd.clientCert }}
      etcd_client.crt: {{ .Values.etcd.clientCert | toString | b64enc | quote }}
      {{- end }}
      {{- if .Values.etcd.clientCertKey }}
      etcd_client.key: {{ .Values.etcd.clientCertKey | toString | b64enc | quote }}
      {{- end }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 12 04:09:29 UTC 2023
    - 706 bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults_windows.go

    limitations under the License.
    */
    
    package v1beta4
    
    const (
    	// DefaultCACertPath defines default location of CA certificate on Windows
    	DefaultCACertPath = "C:/etc/kubernetes/pki/ca.crt"
    	// DefaultContainerRuntimeURLScheme defines default socket url prefix
    	DefaultContainerRuntimeURLScheme = "npipe"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 11:33:30 UTC 2023
    - 879 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    	   openssl  x509 -req -days 36500 \
    	   	-in ./client.csr \
    	   	-extfile <(printf "${EXTFILE}") \
    	   	-CA ./root.crt \
    	   	-CAkey ./root.key \
    	   	-set_serial 1 \
    	          	-sha256 \
    	   	-out ./client.crt \
    	   	&& \
    	   openssl x509 -in client.crt -text
    
    	   > output
    
    	   is below
    
    	*/
    
    	clientCNCert = `Certificate:
        Data:
            Version: 3 (0x2)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. tests/integration/security/ca_custom_root/main_test.go

    		sa string
    	}{
    		{
    			td: "foo",
    			sa: "server-naked-foo",
    		},
    		{
    			td: "bar",
    			sa: "server-naked-bar",
    		},
    	}
    	for _, crt := range crts {
    		command := exec.Cmd{
    			Path:   script,
    			Args:   []string{script, crt.td, ns, crt.sa, tmpdir},
    			Stdout: os.Stdout,
    			Stderr: os.Stdout,
    		}
    		if err := command.Run(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top