Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for insecureSkipTLSVerify (0.25 sec)

  1. cmd/kubeadm/app/discovery/token/token.go

    	controlPlaneEndpoint := fmt.Sprintf("https://%s", endpoint)
    	bootstrapConfig := kubeconfigutil.CreateBasic(controlPlaneEndpoint, clustername, BootstrapUser, []byte{})
    	bootstrapConfig.Clusters[clustername].InsecureSkipTLSVerify = true
    	return bootstrapConfig
    }
    
    // buildSecureBootstrapKubeConfig makes a kubeconfig object that connects securely to the API Server for bootstrapping purposes (validating with the specified CA)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. api/api-rules/violation_exceptions.list

    API rule violation: names_match,k8s.io/client-go/pkg/apis/clientauthentication/v1,Cluster,DisableCompression
    API rule violation: names_match,k8s.io/client-go/pkg/apis/clientauthentication/v1,Cluster,InsecureSkipTLSVerify
    API rule violation: names_match,k8s.io/client-go/pkg/apis/clientauthentication/v1,Cluster,ProxyURL
    API rule violation: names_match,k8s.io/client-go/pkg/apis/clientauthentication/v1,Cluster,TLSServerName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/config_flags.go

    		overrides.ClusterInfo.TLSServerName = *f.TLSServerName
    	}
    	if f.CAFile != nil {
    		overrides.ClusterInfo.CertificateAuthority = *f.CAFile
    	}
    	if f.Insecure != nil {
    		overrides.ClusterInfo.InsecureSkipTLSVerify = *f.Insecure
    	}
    	if f.DisableCompression != nil {
    		overrides.ClusterInfo.DisableCompression = *f.DisableCompression
    	}
    
    	// bind context flags
    	if f.Context != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 15:04:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  4. pkg/kubelet/certificate/bootstrap/bootstrap.go

    		// Define a cluster stanza based on the bootstrap kubeconfig.
    		Clusters: map[string]*clientcmdapi.Cluster{"default-cluster": {
    			Server:                   bootstrapClientConfig.Host,
    			InsecureSkipTLSVerify:    bootstrapClientConfig.Insecure,
    			CertificateAuthority:     caFile,
    			CertificateAuthorityData: caData,
    		}},
    		// Define auth based on the obtained client cert.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 14.2K bytes
    - Viewed (0)
Back to top