Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for CertificatesDir (0.34 sec)

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

    	}
    
    	certificatesDir := kubeadmapiv1.DefaultCertificatesDir
    	if cmd.Flags().Changed(options.CertificatesDir) { // flag is specified
    		certificatesDir = opts.externalcfg.CertificatesDir
    	} else if len(resetCfg.CertificatesDir) > 0 { // configured in the ResetConfiguration
    		certificatesDir = resetCfg.CertificatesDir
    	} else if len(initCfg.ClusterConfiguration.CertificatesDir) > 0 { // fetch from cluster
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 12:26:58 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/staticpod/utils_linux.go

    	saPublicKeyFile := filepath.Join(cfg.CertificatesDir, kubeadmconstants.ServiceAccountPublicKeyName)
    	if err := updatePathOwnerAndPermissions(saPublicKeyFile, *runAsUser, *runAsGroup, 0600); err != nil {
    		return err
    	}
    	saPrivateKeyFile := filepath.Join(cfg.CertificatesDir, kubeadmconstants.ServiceAccountPrivateKeyName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 14:41:12 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/staticpod/utils_linux_test.go

    	wantUpdateFiles := map[string]ownerAndPermissions{
    		filepath.Join(cfg.CertificatesDir, kubeadmconstants.ServiceAccountPublicKeyName):   {uid: runAsUser, gid: runAsGroup, permissions: 0600},
    		filepath.Join(cfg.CertificatesDir, kubeadmconstants.ServiceAccountPrivateKeyName):  {uid: 0, gid: supGroup, permissions: 0640},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 14:41:12 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/join/controlplaneprepare.go

    		return err
    	}
    
    	fmt.Printf("[certs] Using certificateDir folder %q\n", cfg.CertificatesDir)
    
    	// if dryrunning, write certificates files to a temporary folder (and defer restore to the path originally specified by the user)
    	certsDir := cfg.CertificatesDir
    	cfg.CertificatesDir = data.CertificateWriteDir()
    	defer func() { cfg.CertificatesDir = certsDir }()
    	// Generate missing certificates (if any)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:46:34 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/etcd/local.go

    		{Name: "cert-file", Value: filepath.Join(cfg.CertificatesDir, kubeadmconstants.EtcdServerCertName)},
    		{Name: "key-file", Value: filepath.Join(cfg.CertificatesDir, kubeadmconstants.EtcdServerKeyName)},
    		{Name: "trusted-ca-file", Value: filepath.Join(cfg.CertificatesDir, kubeadmconstants.EtcdCACertName)},
    		{Name: "client-cert-auth", Value: "true"},
    		{Name: "peer-cert-file", Value: filepath.Join(cfg.CertificatesDir, kubeadmconstants.EtcdPeerCertName)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  6. cmd/kubeadm/app/phases/controlplane/manifests.go

    		{Name: "client-ca-file", Value: filepath.Join(cfg.CertificatesDir, kubeadmconstants.CACertName)},
    		{Name: "tls-cert-file", Value: filepath.Join(cfg.CertificatesDir, kubeadmconstants.APIServerCertName)},
    		{Name: "tls-private-key-file", Value: filepath.Join(cfg.CertificatesDir, kubeadmconstants.APIServerKeyName)},
    		{Name: "kubelet-client-certificate", Value: filepath.Join(cfg.CertificatesDir, kubeadmconstants.APIServerKubeletClientCertName)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/reset_test.go

    			flags: map[string]string{
    				options.CertificatesDir:       "/tmp",
    				options.NodeCRISocket:         constants.CRISocketCRIO,
    				options.IgnorePreflightErrors: "all",
    				options.ForceReset:            "true",
    				options.DryRun:                "true",
    				options.CleanupTmpDir:         "true",
    			},
    			data: &resetData{
    				certificatesDir:       "/tmp",
    				criSocketPath:         constants.CRISocketCRIO,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 13:42:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/certs/certs.go

    	if err := validateCACert(certKeyLocation{cfg.CertificatesDir, kubeadmconstants.CACertAndKeyBaseName, "", "CA"}); err != nil {
    		return false, err
    	}
    
    	caKeyPath := filepath.Join(cfg.CertificatesDir, kubeadmconstants.CAKeyName)
    	if _, err := os.Stat(caKeyPath); !os.IsNotExist(err) {
    		return false, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 05 10:17:14 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/init/certs_test.go

    func (t *testCertsData) ExternalCA() bool                   { return false }
    func (t *testCertsData) CertificateDir() string             { return t.cfg.CertificatesDir }
    func (t *testCertsData) CertificateWriteDir() string        { return t.cfg.CertificatesDir }
    
    func TestCreateSparseCerts(t *testing.T) {
    	for _, test := range certstestutil.GetSparseCertTestCases(t) {
    		t.Run(test.Name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/controlplane/volumes.go

    	// TODO: Always mount the K8s Certificates directory to a static path inside of the container
    	mounts.NewHostPathMount(kubeadmconstants.KubeAPIServer, kubeadmconstants.KubeCertificatesVolumeName, cfg.CertificatesDir, cfg.CertificatesDir, true, &hostPathDirectoryOrCreate)
    	// Read-only mount for the ca certs (/etc/ssl/certs) directory
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top