Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for tlsCertFile (0.13 sec)

  1. pilot/pkg/model/test/mockopenidserver.go

    	// this is used to simulate network errors and test the refresh logic in jwks resolver.
    	ReturnReorderedKeyAfterFirstNumHits uint64
    
    	// If both TLSKeyFile and TLSCertFile are set, Start() will attempt to start a HTTPS server.
    	TLSKeyFile  string
    	TLSCertFile string
    
    	// Artificious delay added by the mock server on handling requests
    	timeout time.Duration
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/helpers.go

    func KubeletConfigurationPathRefs(kc *KubeletConfiguration) []*string {
    	paths := []*string{}
    	paths = append(paths, &kc.StaticPodPath)
    	paths = append(paths, &kc.Authentication.X509.ClientCAFile)
    	paths = append(paths, &kc.TLSCertFile)
    	paths = append(paths, &kc.TLSPrivateKeyFile)
    	paths = append(paths, &kc.ResolverConfig)
    	paths = append(paths, &kc.VolumePluginDir)
    	paths = append(paths, &kc.PodLogsDir)
    	return paths
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. pilot/cmd/pilot-discovery/app/cmd.go

    	c.PersistentFlags().StringVar(&serverArgs.ServerOptions.TLSOptions.CertFile, "tlsCertFile", "",
    		"File containing the x509 Server Certificate")
    	c.PersistentFlags().StringVar(&serverArgs.ServerOptions.TLSOptions.KeyFile, "tlsKeyFile", "",
    		"File containing the x509 private key matching --tlsCertFile")
    	c.PersistentFlags().StringSliceVar(&serverArgs.ServerOptions.TLSOptions.TLSCipherSuites, "tls-cipher-suites", nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. cmd/kubelet/app/server.go

    			}
    
    			if err := certutil.WriteCert(kc.TLSCertFile, cert); err != nil {
    				return nil, err
    			}
    
    			if err := keyutil.WriteKey(kc.TLSPrivateKeyFile, key); err != nil {
    				return nil, err
    			}
    
    			klog.V(4).InfoS("Using self-signed cert", "TLSCertFile", kc.TLSCertFile, "TLSPrivateKeyFile", kc.TLSPrivateKeyFile)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/v1beta1/zz_generated.conversion.go

    	out.StaticPodURLHeader = *(*map[string][]string)(unsafe.Pointer(&in.StaticPodURLHeader))
    	out.Address = in.Address
    	out.Port = in.Port
    	out.ReadOnlyPort = in.ReadOnlyPort
    	out.TLSCertFile = in.TLSCertFile
    	out.TLSPrivateKeyFile = in.TLSPrivateKeyFile
    	out.TLSCipherSuites = *(*[]string)(unsafe.Pointer(&in.TLSCipherSuites))
    	out.TLSMinVersion = in.TLSMinVersion
    	out.RotateCertificates = in.RotateCertificates
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				HTTPCheckFrequency: zeroDuration,
    				StaticPodURL:       "",
    				StaticPodURLHeader: map[string][]string{},
    				Address:            "",
    				Port:               0,
    				ReadOnlyPort:       0,
    				TLSCertFile:        "",
    				TLSPrivateKeyFile:  "",
    				TLSCipherSuites:    []string{},
    				TLSMinVersion:      "",
    				RotateCertificates: false,
    				ServerTLSBootstrap: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/helpers_test.go

    	kubeletConfigurationPathFieldPaths = sets.New[string](
    		"StaticPodPath",
    		"Authentication.X509.ClientCAFile",
    		"TLSCertFile",
    		"TLSPrivateKeyFile",
    		"ResolverConfig",
    		"PodLogsDir",
    	)
    
    	// KubeletConfiguration fields that do not contain file paths.
    	kubeletConfigurationNonPathFieldPaths = sets.New[string](
    		"Address",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/config/types.go

    	ProviderID string
    	// tlsCertFile is the file containing x509 Certificate for HTTPS.  (CA cert,
    	// if any, concatenated after server cert). If tlsCertFile and
    	// tlsPrivateKeyFile are not provided, a self-signed certificate
    	// and key are generated for the public address and saved to the directory
    	// passed to the Kubelet's --cert-dir flag.
    	TLSCertFile string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  9. pkg/kubelet/certificate/kubelet.go

    			return kubeClient, nil
    		}
    	}
    	certificateStore, err := certificate.NewFileStore(
    		"kubelet-server",
    		certDirectory,
    		certDirectory,
    		kubeCfg.TLSCertFile,
    		kubeCfg.TLSPrivateKeyFile)
    	if err != nil {
    		return nil, fmt.Errorf("failed to initialize server certificate store: %v", err)
    	}
    	var certificateRenewFailure = compbasemetrics.NewCounter(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. tests/integration/security/file_mounted_certs/main_test.go

                  value: "--caCertFile=/server-certs/root-cert.pem"
                - path: spec.template.spec.containers.[name:discovery].args[1002]
                  value: "--tlsCertFile=/server-certs/cert-chain.pem"
                - path: spec.template.spec.containers.[name:discovery].args[1003]
                  value: "--tlsKeyFile=/server-certs/key.pem"
                - path: spec.template.spec.volumes[-1]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top