Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,041 for certv1 (0.16 sec)

  1. pkg/kube/inject/testdata/inject/merge-probers.yaml.injected

            prometheus.io/scrape: "true"
            sidecar.istio.io/status: '{"initContainers":["istio-init"],"containers":["istio-proxy"],"volumes":["workload-socket","credential-socket","workload-certs","istio-envoy","istio-data","istio-podinfo","istio-token","istiod-ca-cert"],"imagePullSecrets":null,"revision":"default"}'
          creationTimestamp: null
          labels:
            app: hello
            security.istio.io/tlsMode: istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 13 23:27:34 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  2. pkg/kubelet/certificate/bootstrap/bootstrap.go

    		return false, nil
    	}
    	now := time.Now()
    	for _, cert := range certs {
    		if now.After(cert.NotAfter) {
    			utilruntime.HandleError(fmt.Errorf("part of the existing bootstrap client certificate in %s is expired: %v", kubeconfigPath, cert.NotAfter))
    			return false, nil
    		}
    	}
    	return true, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/join/controlplaneprepare.go

    	if !ok {
    		return errors.New("download-certs phase invoked with an invalid data struct")
    	}
    
    	if data.Cfg().ControlPlane == nil || len(data.CertificateKey()) == 0 {
    		klog.V(1).Infoln("[download-certs] Skipping certs download")
    		return nil
    	}
    
    	cfg, err := data.InitCfg()
    	if err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:46:34 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. tools/certs/common.mk

    # variables: workload certs: eg VM
    WORKLOAD_DAYS ?= 1
    SERVICE_ACCOUNT ?= default
    WORKLOAD_CN ?= Workload
    
    #------------------------------------------------------------------------
    # variables: files to clean
    FILES_TO_CLEAN+=k8s-root-cert.pem \
                     k8s-root-cert.srl  \
                     k8s-root-key.pem root-ca.conf root-cert.csr root-cert.pem root-cert.srl root-key.pem
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 20 08:51:56 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. pkg/kube/inject/webhook_test.go

    			Annotations: map[string]string{},
    		},
    		Spec: corev1.PodSpec{
    			Volumes:          []corev1.Volume{{Name: "v0"}},
    			InitContainers:   []corev1.Container{{Name: "c0"}},
    			Containers:       []corev1.Container{{Name: "c1"}},
    			ImagePullSecrets: []corev1.LocalObjectReference{{Name: "p0"}},
    		},
    	}
    
    	if skip {
    		pod.ObjectMeta.Annotations[annotation.SidecarInject.Name] = "false"
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 39K bytes
    - Viewed (1)
  6. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    	fs.StringVar(&s.ServerCert.CertDirectory, "cert-dir", s.ServerCert.CertDirectory, ""+
    		"The directory where the TLS certs are located. "+
    		"If --tls-cert-file and --tls-private-key-file are provided, this flag will be ignored.")
    
    	fs.StringVar(&s.ServerCert.CertKey.CertFile, "tls-cert-file", s.ServerCert.CertKey.CertFile, ""+
    		"File containing the default x509 Certificate for HTTPS. (CA cert, if any, concatenated "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. security/pkg/pki/testdata/multilevelpki/ecc-certs.sh

    openssl req -new -key ecc-int2-key.pem -out ecc-int2-cert.csr -config int2-cert.cfg -batch -sha256
    
    openssl x509 -req -days 3650 -in ecc-int2-cert.csr -sha256 -CA ecc-int-cert.pem -CAkey ecc-int-key.pem -CAcreateserial -out ecc-int2-cert.pem -extensions v3_req -extfile int2-cert.cfg
    
    cat ecc-root-cert.pem > ecc-int-cert-chain.pem
    cat ecc-int-cert.pem >> ecc-int-cert-chain.pem
    cp ecc-int-cert-chain.pem ecc-int2-cert-chain.pem
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 16 19:54:33 UTC 2020
    - 2K bytes
    - Viewed (0)
  8. security/pkg/pki/testdata/cert.pem

    Oliver Liu <******@****.***> 1520311744 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 06 04:49:04 UTC 2018
    - 1K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/testdata/cert.key

    Nathan Mittler <******@****.***> 1516863255 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 06:54:15 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/verify_options.go

    	if len(clientCA) == 0 {
    		return nil, nil
    	}
    
    	// Wrap with an x509 verifier
    	var err error
    	opts := DefaultVerifyOptions()
    	opts.Roots, err = cert.NewPool(clientCA)
    	if err != nil {
    		return nil, fmt.Errorf("error loading certs from  %s: %v", clientCA, err)
    	}
    
    	return StaticVerifierFn(opts), nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 07 19:48:24 UTC 2019
    - 2.2K bytes
    - Viewed (0)
Back to top