Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for tlsCertFile (0.36 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. cmd/kubelet/app/options/options.go

    		"The duration to cache 'unauthorized' responses from the webhook authorizer.")
    
    	fs.StringVar(&c.TLSCertFile, "tls-cert-file", c.TLSCertFile, ""+
    		"File containing x509 Certificate used for serving HTTPS (with intermediate certs, if any, concatenated after server cert). "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  7. pkg/features/kube_features.go

    	// owner: @zhangweikop
    	// beta: v1.31
    	//
    	// Enable kubelet tls server to update certificate if the specified certificate files are changed.
    	// This feature is useful when specifying tlsCertFile & tlsPrivateKeyFile in kubelet Configuration.
    	// No effect for other cases such as using serverTLSbootstap.
    	ReloadKubeletServerCertificateFile featuregate.Feature = "ReloadKubeletServerCertificateFile"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"integer"},
    							Format:      "int32",
    						},
    					},
    					"tlsCertFile": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top