Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 192 for KubeConfig (0.2 sec)

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

    	UnsafeSkipCAVerification bool `json:"unsafeSkipCAVerification,omitempty"`
    }
    
    // FileDiscovery is used to specify a file or URL to a kubeconfig file from which to load cluster information
    type FileDiscovery struct {
    	// KubeConfigPath is used to specify the actual file path or URL to the kubeconfig file from which to load cluster information
    	KubeConfigPath string `json:"kubeConfigPath"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. pkg/kube/client_factory.go

    	// ToDiscoveryClient returns discovery client
    	ToDiscoveryClient() (discovery.CachedDiscoveryInterface, error)
    	// ToRESTMapper returns a restmapper
    	ToRESTMapper() (meta.RESTMapper, error)
    	// ToRawKubeConfigLoader return kubeconfig loader as-is
    	ToRawKubeConfigLoader() clientcmd.ClientConfig
    }
    
    type PartialFactory interface {
    	rESTClientGetter
    
    	// DynamicClient returns a dynamic client ready for use
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 21:30:37 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/gateway_simulation_test.go

    		// TODO(https://github.com/istio/istio/issues/24385) this is a bug
    		// "alpha" is created after "beta". This triggers a mismatch in the conflict resolution logic in Ingress and VirtualService, leading to unexpected results
    		kubeConfig: tmpl.MustEvaluate(cfg, map[string]string{"Name": "alpha", "Time": "2020-01-01T00:00:00Z"}) +
    			tmpl.MustEvaluate(cfg, map[string]string{"Name": "beta", "Time": "2010-01-01T00:00:00Z"}),
    		calls: []simulation.Expect{
    			{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/options.go

    	Registries []string
    
    	// Kubernetes controller options
    	KubeOptions kubecontroller.Options
    	// ClusterRegistriesNamespace specifies where the multi-cluster secret resides
    	ClusterRegistriesNamespace string
    	KubeConfig                 string
    
    	// DistributionTracking control
    	DistributionCacheRetention time.Duration
    
    	// DistributionTracking control
    	DistributionTrackingEnabled bool
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. cluster/gce/upgrade.sh

      # to generate a valid ABAC policy. If the username changes, should
      # the script fail? Should we generate a default username and password
      # if the section is missing in kubeconfig? Handle this better in 1.5.
      get-kubeconfig-basicauth
      get-kubeconfig-bearertoken
    
      detect-master
      parse-master-env
      upgrade-master-env
    
      # Delete the master instance. Note that the master-pd is created
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. cni/pkg/plugin/plugin_test.go

            ],
            "routes": []
    
        },
        "plugin_log_level": "debug",
        "cni_event_address": "%s",
        "ambient_enabled": %t,
        "kubernetes": {
            "k8s_api_root": "APIRoot",
            "kubeconfig": "testK8sConfig",
    		"intercept_type": "%s",
            "node_name": "testNodeName",
            "exclude_namespaces": ["testExcludeNS"],
            "cni_bin_dir": "/testDirectory"
        }
    }`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. cni/README.md

    - `install-cni` container
        - copies `istio-cni` and `istio-iptables` to `/opt/cni/bin`
        - creates kubeconfig for the service account the pod runs under
        - periodically copy the K8S JWT token for istio-cni on the host to connect to K8S.
        - injects the CNI plugin config to the CNI config file
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/upgrade/diff.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/phases/controlplane"
    	kubeadmutil "k8s.io/kubernetes/cmd/kubeadm/app/util"
    	configutil "k8s.io/kubernetes/cmd/kubeadm/app/util/config"
    	kubeconfigutil "k8s.io/kubernetes/cmd/kubeadm/app/util/kubeconfig"
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/output"
    )
    
    type diffFlags struct {
    	apiServerManifestPath         string
    	controllerManagerManifestPath string
    	schedulerManifestPath         string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/multicluster_test.go

    }
    
    func initController(client kube.CLIClient, ns string, stop <-chan struct{}) *multicluster.Controller {
    	sc := multicluster.NewController(client, ns, "cluster-1", mesh.NewFixedWatcher(nil))
    	sc.ClientBuilder = func(kubeConfig []byte, c cluster.ID, configOverrides ...func(*rest.Config)) (kube.Client, error) {
    		return kube.NewFakeClient(), nil
    	}
    	client.RunAndWait(stop)
    	return sc
    }
    
    func Test_KubeSecretController(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/sidecar_simulation_test.go

    			Result: simulation.Result{
    				ClusterMatched: fmt.Sprintf("outbound|%d||headless.default.svc.cluster.local", call.Port),
    			},
    		})
    	}
    	runSimulationTest(t, nil, xds.FakeOptions{}, simulationTest{
    		kubeConfig: `apiVersion: v1
    kind: Service
    metadata:
      name: headless
      namespace: default
    spec:
      clusterIP: None
      selector:
        app: headless
      ports:` + ports + `
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top