Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 277 for KubeConfig (0.15 sec)

  1. cni/pkg/plugin/kubernetes.go

    	// Some config can be passed in a kubeconfig file
    	kubeconfig := conf.Kubernetes.Kubeconfig
    
    	config, err := kube.DefaultRestConfig(kubeconfig, "")
    	if err != nil {
    		log.Errorf("Failed setting up kubernetes client with kubeconfig %s", kubeconfig)
    		return nil, err
    	}
    
    	log.Debugf("istio-cni set up kubernetes client with kubeconfig %s", kubeconfig)
    
    	// Create the client
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. cni/pkg/install/testdata/istio-cni.conf

      "type": "istio-cni",
      "ipam": {},
      "dns": {},
      "plugin_log_level": "debug",
      "log_uds_address": "",
      "cni_event_address": "",
      "ambient_enabled": false,
      "kubernetes": {
        "kubeconfig": "/path/to/kubeconfig",
        "exclude_namespaces": [
          ""
        ]
      }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 319 bytes
    - Viewed (0)
  3. pkg/kube/multicluster/secretcontroller.go

    	return nil
    }
    
    // DefaultBuildClientsFromConfig creates kube.Clients from the provided kubeconfig. This is overridden for testing only
    func DefaultBuildClientsFromConfig(kubeConfig []byte, clusterID cluster.ID, configOverrides ...func(*rest.Config)) (kube.Client, error) {
    	restConfig, err := kube.NewUntrustedRestConfig(kubeConfig, configOverrides...)
    	if err != nil {
    		return nil, err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. cluster/gce/config-common.sh

    export WINDOWS_KUBELET_CONFIG_FILE="${WINDOWS_K8S_DIR}\kubelet-config.yaml"
    # Path for kubeconfig file on Windows nodes.
    export WINDOWS_KUBECONFIG_FILE="${WINDOWS_K8S_DIR}\kubelet.kubeconfig"
    # Path for bootstrap kubeconfig file on Windows nodes.
    export WINDOWS_BOOTSTRAP_KUBECONFIG_FILE="${WINDOWS_K8S_DIR}\kubelet.bootstrap-kubeconfig"
    # Path for kube-proxy kubeconfig file on Windows nodes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:06:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/certs/renewal/manager.go

    		kubeConfigReadWriter := newKubeconfigReadWriter(kubernetesDir, kubeConfig.fileName,
    			rm.cfg.CertificatesDir, kubeadmconstants.CACertAndKeyBaseName)
    
    		// adds the certificateRenewHandler.
    		// Certificates embedded kubeConfig files in are indexed by fileName, that is a well know constant defined
    		// in the kubeadm constants package and that can be reused across all the kubeadm codebase
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. cni/test/testdata/pre/calico.conflist

      "name": "k8s-pod-network",
      "plugins": [
        {
          "etcd_endpoints": "http://10.110.0.136:6666",
          "ipam": {
            "type": "calico-ipam"
          },
          "kubernetes": {
            "kubeconfig": "/etc/cni/net.d/calico-kubeconfig"
          },
          "mtu": 1500,
          "plugin_log_level": "info",
          "policy": {
            "type": "k8s"
          },
          "type": "calico"
        },
        {
          "capabilities": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 528 bytes
    - Viewed (0)
  7. cni/pkg/install/testdata/bridge.conf.golden

        {
          "ambient_enabled": false,
          "cni_event_address": "",
          "dns": {},
          "ipam": {},
          "kubernetes": {
            "exclude_namespaces": [
              ""
            ],
            "kubeconfig": "/path/to/kubeconfig"
          },
          "log_uds_address": "",
          "name": "istio-cni",
          "plugin_log_level": "debug",
          "type": "istio-cni"
        }
      ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 716 bytes
    - Viewed (0)
  8. tools/bug-report/pkg/kubectlcmd/kubectlcmd.go

    		for range r.runningTasksTicker.C {
    			r.printRunningTasks()
    		}
    	}()
    }
    
    // Options contains the Run options.
    type Options struct {
    	// Path to the kubeconfig file.
    	Kubeconfig string
    	// ComponentName of the kubeconfig context to use.
    	Context string
    
    	// namespace - k8s namespace for Run command
    	Namespace string
    
    	// DryRun performs all steps but only logs the Run command without running it.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 01:18:03 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/output/flag_output.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
    - 4.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/controlplane/manifests_test.go

    			expected: []string{
    				"kube-scheduler",
    				"--bind-address=127.0.0.1",
    				"--leader-elect=true",
    				"--kubeconfig=" + filepath.Join(kubeadmconstants.KubernetesDir, "scheduler.conf"),
    				"--authentication-kubeconfig=" + filepath.Join(kubeadmconstants.KubernetesDir, "scheduler.conf"),
    				"--authorization-kubeconfig=" + filepath.Join(kubeadmconstants.KubernetesDir, "scheduler.conf"),
    			},
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top