Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 277 for KUBECONFIG (0.15 sec)

  1. istioctl/pkg/multicluster/options.go

    	"istio.io/istio/istioctl/pkg/cli"
    )
    
    const (
    	clusterNameAnnotationKey = "networking.istio.io/cluster"
    )
    
    // KubeOptions contains kubernetes options common to all commands.
    type KubeOptions struct {
    	Kubeconfig string
    	Context    string
    	Namespace  string
    }
    
    // Inherit the common kubernetes flags defined in the root package. This is a bit of a hack,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 01 23:59:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

          # Optional: user-generated root
          - name: cacerts
            secret:
              secretName: cacerts
              optional: true
          - name: istio-kubeconfig
            secret:
              secretName: istio-kubeconfig
              optional: true
          # Optional: istio-csr dns pilot certs
          - name: istio-csr-dns-cert
            secret:
              secretName: istiod-tls
              optional: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/pilot_override_kubernetes.golden.yaml

                  path: istio-token
          - name: cacerts
            secret:
              optional: true
              secretName: cacerts
          - name: istio-kubeconfig
            secret:
              optional: true
              secretName: istio-kubeconfig
          - name: istio-csr-dns-cert
            secret:
              optional: true
              secretName: istiod-tls
          - configMap:
              defaultMode: 420
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/client_config.go

    	ErrEmptyConfig = clientcmd.NewEmptyConfigError(`Missing or incomplete configuration info.  Please point to an existing, complete config file:
    
    
      1. Via the command-line flag --kubeconfig
      2. Via the KUBECONFIG environment variable
      3. In your home directory as ~/.kube/config
    
    To view or setup config directly use the 'config' command.`)
    )
    
    var _ = clientcmd.ClientConfig(&clientConfig{})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 13 10:28:09 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/options/constant.go

    	ImageRepository = "image-repository"
    
    	// KubeconfigDir flag sets the path where to save the kubeconfig file.
    	KubeconfigDir = "kubeconfig-dir"
    
    	// KubeconfigPath flag sets the kubeconfig file to use when talking to the cluster. If the flag is not set, a set of standard locations are searched for an existing KubeConfig file.
    	KubeconfigPath = "kubeconfig"
    
    	// KubernetesVersion flag sets the Kubernetes version for the control plane.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/certs/renewal/readwriter_test.go

    	}
    
    	// creates a certificate and then embeds it into a kubeconfig file
    	cert := writeTestKubeconfig(t, dirKubernetes, "test", testCACert, testCAKey, time.Time{}, time.Time{})
    
    	// Creates a KubeconfigReadWriter
    	kubeconfigReadWriter := newKubeconfigReadWriter(dirKubernetes, "test", dirPKI, caName)
    
    	// Reads the certificate embedded in a kubeconfig
    	readCert, err := kubeconfigReadWriter.Read()
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. cni/pkg/config/config.go

    	// Since it runs out-of-process, it has to be separately configured
    	PluginLogLevel string
    	// Name of the kubeconfig file used by the CNI plugin
    	KubeconfigFilename string
    	// The file mode to set when creating the kubeconfig file
    	KubeconfigMode int
    	// CA file for kubeconfig
    	KubeCAFile string
    	// Whether to use insecure TLS in the kubeconfig file
    	SkipTLSVerify bool
    
    	// Comma-separated list of K8S namespaces that CNI should ignore
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/componentconfigs/kubeproxy_test.go

    				config: kubeproxyconfig.KubeProxyConfiguration{
    					FeatureGates: map[string]bool{},
    					BindAddress:  kubeadmapiv1.DefaultProxyBindAddressv6,
    					ClientConnection: componentbaseconfig.ClientConnectionConfiguration{
    						Kubeconfig: kubeproxyKubeConfigFileName,
    					},
    				},
    			},
    		},
    		{
    			name:       "IPv4 bind address",
    			clusterCfg: kubeadmapi.ClusterConfiguration{},
    			endpoint: kubeadmapi.APIEndpoint{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 01 14:17:07 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/apiclient/clientbacked_dryrun.go

    }
    
    // NewClientBackedDryRunGetterFromKubeconfig creates a new ClientBackedDryRunGetter instance from the given KubeConfig file
    func NewClientBackedDryRunGetterFromKubeconfig(file string) (*ClientBackedDryRunGetter, error) {
    	config, err := clientcmd.LoadFromFile(file)
    	if err != nil {
    		return nil, errors.Wrap(err, "failed to load kubeconfig")
    	}
    	clientConfig, err := clientcmd.NewDefaultClientConfig(*config, &clientcmd.ConfigOverrides{}).ClientConfig()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 16 10:29:45 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/certs/renewal/expiration.go

    type ExpirationInfo struct {
    	// Name of the certificate
    	// For PKI certificates, it is the name defined in the certsphase package, while for certificates
    	// embedded in the kubeConfig files, it is the kubeConfig file name defined in the kubeadm constants package.
    	// If you use the CertificateRenewHandler returned by Certificates func, handler.Name already contains the right value.
    	Name string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 05 09:20:34 UTC 2019
    - 1.8K bytes
    - Viewed (0)
Back to top