Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 65 for keyFiles (0.14 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta3/doc.go

    //	  # 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"
    //	kubernetesVersion: "v1.21.0"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 13:30:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/etcd/local_test.go

    						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,
    		},
    	}
    
    	for _, test := range tests {
    		// Execute createStaticPodFunction
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //	  # 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"
    //	kubernetesVersion: "v1.21.0"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. 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)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/stats_test.go

    							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)
  6. pkg/kubelet/certificate/bootstrap/bootstrap.go

    	if err != nil {
    		return nil, nil, fmt.Errorf("unable to load bootstrap kubeconfig: %v", err)
    	}
    
    	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)
  7. 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)
  8. cmd/kubeadm/app/apis/kubeadm/types.go

    	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
    
    // JoinConfiguration contains elements describing a particular node.
    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. cluster/gce/gci/configure-kubeapiserver.sh

          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)
  10. pilot/cmd/pilot-agent/status/server_test.go

    		if err != nil {
    			t.Errorf("failed to allocate unused port %v", err)
    		}
    		t.Cleanup(func() { listener.Close() })
    		keyFile := env.IstioSrc + "/pilot/cmd/pilot-agent/status/test-cert/cert.key"
    		crtFile := env.IstioSrc + "/pilot/cmd/pilot-agent/status/test-cert/cert.crt"
    		cert, err := tls.LoadX509KeyPair(crtFile, keyFile)
    		if err != nil {
    			t.Fatalf("could not load TLS keys: %v", err)
    		}
    		serverTLSConfig := &tls.Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top