Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for pki (0.05 sec)

  1. cmd/kubeadm/app/cmd/phases/reset/cleanupnode_test.go

    				"pki",
    			},
    			setupFiles: []string{
    				"pki/ca.pem",
    				kubeadmconstants.KubeletKubeConfigFileName,
    			},
    			verifyExists: []string{
    				"pki",
    			},
    			verifyNotExists: []string{
    				"manifests",
    			},
    		},
    		"preserve unrelated file foo": {
    			setupDirs: []string{
    				"manifests",
    				"pki",
    			},
    			setupFiles: []string{
    				"manifests/etcd.yaml",
    				"manifests/kube-apiserver.yaml",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. cluster/gce/manifests/konnectivity-server.yaml

          readOnly: false
        - name: pki
          mountPath: /etc/srv/kubernetes/pki
          readOnly: true
        - name: konnectivity-uds
          mountPath: /etc/srv/kubernetes/konnectivity-server
          readOnly: false
      volumes:
      - name: varlogkonnectivityserver
        hostPath:
          path: /var/log/konnectivity-server.log
          type: FileOrCreate
      - name: pki
        hostPath:
          path: /etc/srv/kubernetes/pki
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 10:31:11 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

      for output_file in \
        "${CERT_DIR}/pki/private/ca.key" \
        "${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" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. cluster/gce/manifests/cloud-controller-manager.manifest

          }
        },
        "command": [
          "/cloud-pv-admission-labeler",
          "--addr=localhost:9001",
          "--tls-cert-path=/etc/srv/kubernetes/pki/cloud-pvl-admission/server.crt",
          "--tls-key-path=/etc/srv/kubernetes/pki/cloud-pvl-admission/server.key",
          "--cloud-provider=gce",
          "--cloud-config=/etc/gce.conf"
        ],
        "volumeMounts": [
            {{cloud_config_mount}}
            {{additional_cloud_config_mount}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 08:50:12 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/controlplane/volumes.go

    	}
    	return volumes, volumeMounts
    }
    
    // isExtraVolumeMountNeeded specifies whether /etc/pki/ca-trust/ should be host-mounted into the containers
    // On some systems were we host-mount /etc/ssl/certs, it is also required to mount /etc/pki/ca-trust/. This is needed
    // due to symlinks pointing from files in /etc/ssl/certs into /etc/pki/ca-trust/
    func isExtraVolumeMountNeeded(caCertsExtraVolumePath string) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

        write-pki-data "${KONNECTIVITY_AGENT_CA_CERT}" "${KONNECTIVITY_AGENT_CA_CERT_PATH}"
        write-pki-data "${KONNECTIVITY_AGENT_CLIENT_KEY}" "${KONNECTIVITY_AGENT_CLIENT_KEY_PATH}"
        write-pki-data "${KONNECTIVITY_AGENT_CLIENT_CERT}" "${KONNECTIVITY_AGENT_CLIENT_CERT_PATH}"
      fi
    }
    
    function create-master-pki {
      echo "Creating master pki files"
    
      local -r pki_dir="/etc/srv/kubernetes/pki"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/controlplane/volumes_test.go

    		},
    		{
    			name:     "Should ignore files in /etc/pki/ca-trust",
    			ca:       "/etc/pki/ca-trust/my-etcd-ca.crt",
    			cert:     "/etc/pki/ca-trust/my-etcd.crt",
    			key:      "/etc/pki/ca-trust/my-etcd.key",
    			vol:      []v1.Volume{},
    			volMount: []v1.VolumeMount{},
    		},
    		{
    			name:     "Should ignore files in Kubernetes PKI directory (and subdirs)",
    			ca:       k8sCertificatesDir + "/ca/my-etcd-ca.crt",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. security/pkg/server/ca/server.go

    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pkg/kube/multicluster"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/security/pkg/pki/ca"
    	caerror "istio.io/istio/security/pkg/pki/error"
    	"istio.io/istio/security/pkg/pki/util"
    )
    
    var serverCaLog = log.RegisterScope("serverca", "Citadel server log")
    
    // CertificateAuthority contains methods to be supported by a CA.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:26 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/certs/renewal/manager.go

    		for _, cert := range certs {
    			// create a ReadWriter for certificates stored in the K8s local PKI
    			pkiReadWriter := newPKICertificateReadWriter(rm.cfg.CertificatesDir, cert.BaseName)
    			certConfigMutators := loadCertConfigMutators(cert.BaseName)
    
    			// adds the certificateRenewHandler.
    			// PKI certificates are indexed by name, that is a well know constant defined
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. pkg/spiffe/spiffe_test.go

    	validRootCertFile1    = filepath.Join(env.IstioSrc, "security/pkg/pki/testdata/spiffe-root-cert-1.pem")
    	validRootCertFile2    = filepath.Join(env.IstioSrc, "security/pkg/pki/testdata/spiffe-root-cert-2.pem")
    	validIntCertFile      = filepath.Join(env.IstioSrc, "security/pkg/pki/testdata/spiffe-int-cert.pem")
    	validWorkloadCertFile = filepath.Join(env.IstioSrc, "security/pkg/pki/testdata/spiffe-workload-cert.pem")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
Back to top