- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 68 for kubeconfig (0.1 sec)
-
cni/pkg/install/testdata/list.conflist.golden
"type": "bridge" }, { "sysctl": { "net.core.somaxconn": "500" }, "type": "tuning" }, { "ambient_enabled": false, "cni_agent_run_dir": "/path/to/kubeconfig", "dns": {}, "exclude_namespaces": [ "" ], "ipam": {}, "name": "istio-cni", "plugin_log_level": "debug", "type": "istio-cni" } ]
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 01 18:38:14 UTC 2024 - 776 bytes - Viewed (0) -
cni/pkg/repair/repair.go
if err != nil { repairLog.Fatalf("Fatal error constructing repair controller: %+v", err) } go rc.Run(ctx.Done()) client.RunAndWait(ctx.Done()) } // Set up Kubernetes client using kubeconfig (or in-cluster config if no file provided) func clientSetup() (kube.Client, error) { config, err := kube.DefaultRestConfig("", "") if err != nil { return nil, err }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jun 28 19:12:54 UTC 2024 - 1.5K bytes - Viewed (0) -
cni/pkg/nodeagent/options.go
DefaultHostProbeSNATIP = "169.254.7.127" DefaultHostProbeSNATIPV6 = "fd16:9254:7127:1337:ffff:ffff:ffff:ffff" ) type AmbientArgs struct { SystemNamespace string Revision string KubeConfig string ServerSocket string DNSCapture bool EnableIPv6 bool TPROXYRedirection bool
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 16 15:33:47 UTC 2024 - 2.1K bytes - Viewed (0) -
.gitignore
/third_party/pkg # Also ignore etcd installed by hack/install-etcd.sh /third_party/etcd* /default.etcd # Also ignore protoc installed by hack/install-protoc.sh /third_party/protoc* # User cluster configs .kubeconfig .tags* # Version file for dockerized build .dockerized-kube-version-defs # Web UI /www/master/node_modules/ /www/master/npm-debug.log /www/master/shared/config/development.json # Karma output
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Feb 29 08:22:06 UTC 2024 - 2.1K bytes - Viewed (0) -
cni/pkg/nodeagent/server.go
} func (s *Server) NotReady() { s.isReady.Store(false) } // buildKubeClient creates the kube client func buildKubeClient(kubeConfig string) (kube.Client, error) { // Used by validation kubeRestConfig, err := kube.DefaultRestConfig(kubeConfig, "", func(config *rest.Config) { config.QPS = 80 config.Burst = 160 }) if err != nil { return nil, fmt.Errorf("failed creating kube config: %v", err)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Sep 25 20:54:34 UTC 2024 - 13.4K bytes - Viewed (0) -
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: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jul 17 23:10:17 UTC 2024 - 10.5K bytes - Viewed (0) -
cni/pkg/install/cniconfig_test.go
kubeconfigFilename = "/path/to/kubeconfig" cniNetworkConfigFile = "testdata/istio-cni.conf.template" cniNetworkConfig = `{ "cniVersion": "0.3.1", "name": "istio-cni", "type": "istio-cni", "plugin_log_level": "__LOG_LEVEL__", "kubernetes": { "kubeconfig": "__KUBECONFIG_FILENAME__", "cni_bin_dir": "/path/cni/bin" } } ` )
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 01 18:38:14 UTC 2024 - 15.3K bytes - Viewed (0) -
cni/pkg/plugin/plugin_test.go
}, "plugin_log_level": "debug", "cni_agent_run_dir": "%s", "ambient_enabled": %t, "exclude_namespaces": ["testExcludeNS"], "kubernetes": { "k8s_api_root": "APIRoot", "kubeconfig": "testK8sConfig", "intercept_type": "%s" } }` type mockInterceptRuleMgr struct { lastRedirect []*Redirect } func buildMockConf(ambientEnabled bool) string { return fmt.Sprintf(
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 17.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.4.md
* The Kubelet now supports the `--require-kubeconfig` option which reads all client config from the provided `--kubeconfig` file and will cause the Kubelet to exit with error code 1 on error. It also forces the Kubelet to use the server URL from the kubeconfig file rather than the `--api-servers` flag. Without this flag set, a failure to read the kubeconfig file would only result in a warning message. ([#30798](https://github.com/kubernetes/kubernetes/pull/30798),...
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 133.5K bytes - Viewed (0) -
istioctl/cmd/root.go
Title: "Istio Control", Section: "istioctl CLI", Manual: "Istio Control", })) validateCmd := validate.NewValidateCommand(ctx) hideInheritedFlags(validateCmd, "kubeconfig") rootCmd.AddCommand(validateCmd) rootCmd.AddCommand(optionsCommand(rootCmd)) // BFS applies the flag error function to all subcommands seenCommands := make(map[*cobra.Command]bool)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Aug 05 02:08:47 UTC 2024 - 9.6K bytes - Viewed (0)