Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 119 for certFiles (0.23 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// Required if using a TLS connection.
    	CAFile string `json:"caFile"`
    
    	// CertFile is an SSL certification file used to secure etcd communication.
    	// Required if using a TLS connection.
    	CertFile string `json:"certFile"`
    
    	// KeyFile is an SSL key file used to secure etcd communication.
    	// Required if using a TLS connection.
    	KeyFile string `json:"keyFile"`
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta3/doc.go

    //	    peerCertSANs:
    //	    - "10.100.0.1"
    //	  # external:
    //	    # endpoints:
    //	    # - "10.100.0.1:2379"
    //	    # - "10.100.0.2:2379"
    //	    # caFile: "/etcd/kubernetes/pki/etcd/etcd-ca.crt"
    //	    # certFile: "/etcd/kubernetes/pki/etcd/etcd.crt"
    //	    # keyFile: "/etcd/kubernetes/pki/etcd/etcd.key"
    //	networking:
    //	  serviceSubnet: "10.96.0.0/16"
    //	  podSubnet: "10.244.0.0/24"
    //	  dnsDomain: "cluster.local"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 13:30:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/server.go

    		// Use the DNS certificate provided via args or in well known location.
    		err = s.initFileCertificateWatches(TLSOptions{
    			CaCertFile: caCertPath,
    			KeyFile:    tlsKeyPath,
    			CertFile:   tlsCertPath,
    		})
    		if err != nil {
    			// Not crashing istiod - This typically happens if certs are missing and in tests.
    			log.Errorf("error initializing certificate watches: %v", err)
    			return nil
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/etcd/local_test.go

    				Etcd: kubeadmapi.Etcd{
    					External: &kubeadmapi.ExternalEtcd{
    						Endpoints: []string{
    							"https://etcd-instance:2379",
    						},
    						CAFile:   "/etc/kubernetes/pki/etcd/ca.crt",
    						CertFile: "/etc/kubernetes/pki/etcd/apiserver-etcd-client.crt",
    						KeyFile:  "/etc/kubernetes/pki/etcd/apiserver-etcd-client.key",
    					},
    				},
    			},
    			expectedError: true,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //	    peerCertSANs:
    //	    - "10.100.0.1"
    //	  # external:
    //	    # endpoints:
    //	    # - "10.100.0.1:2379"
    //	    # - "10.100.0.2:2379"
    //	    # caFile: "/etcd/kubernetes/pki/etcd/etcd-ca.crt"
    //	    # certFile: "/etcd/kubernetes/pki/etcd/etcd.crt"
    //	    # keyFile: "/etcd/kubernetes/pki/etcd/etcd.key"
    //	networking:
    //	  serviceSubnet: "10.96.0.0/16"
    //	  podSubnet: "10.244.0.0/24"
    //	  dnsDomain: "cluster.local"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. tests/integration/telemetry/api/stats_test.go

    							ToWorkload: st,
    							Scheme:     scheme.HTTPS,
    							Port:       echo.Port{ServicePort: 15014},
    							HTTP: echo.HTTP{
    								Path: "/metrics",
    							},
    							TLS: echo.TLS{
    								CertFile:           "/etc/certs/custom/cert-chain.pem",
    								KeyFile:            "/etc/certs/custom/key.pem",
    								CaCertFile:         "/etc/certs/custom/root-cert.pem",
    								InsecureSkipVerify: true,
    							},
    						})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. pkg/kubelet/certificate/bootstrap/bootstrap.go

    	}
    
    	clientConfig := restclient.AnonymousClientConfig(bootstrapClientConfig)
    	pemPath := store.CurrentPath()
    	clientConfig.KeyFile = pemPath
    	clientConfig.CertFile = pemPath
    	if err := writeKubeconfigFromBootstrapping(clientConfig, kubeconfigPath, pemPath); err != nil {
    		return nil, nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/types.go

    	// If not provided, kubeadm will run etcd in a static pod.
    	Endpoints []string
    	// CAFile is an SSL Certificate Authority file used to secure etcd communication.
    	CAFile string
    	// CertFile is an SSL certification file used to secure etcd communication.
    	CertFile string
    	// KeyFile is an SSL key file used to secure etcd communication.
    	KeyFile string
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  9. pkg/kubelet/server/server.go

    	metricsMethodBuckets sets.Set[string]
    	resourceAnalyzer     stats.ResourceAnalyzer
    }
    
    // TLSOptions holds the TLS options.
    type TLSOptions struct {
    	Config   *tls.Config
    	CertFile string
    	KeyFile  string
    }
    
    // containerInterface defines the restful.Container functions used on the root container
    type containerInterface interface {
    	Add(service *restful.WebService) *restful.Container
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-kubeapiserver.sh

          params_ref+=" --etcd-servers=${ETCD_SERVERS:-https://127.0.0.1:2379}"
          params_ref+=" --etcd-cafile=${ETCD_APISERVER_CA_CERT_PATH}"
          params_ref+=" --etcd-certfile=${ETCD_APISERVER_CLIENT_CERT_PATH}"
          params_ref+=" --etcd-keyfile=${ETCD_APISERVER_CLIENT_KEY_PATH}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top