- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 21 for plugin_log_level (0.08 sec)
-
cni/test/testdata/expected/minikube_cni.conflist.expected
{ "ambient_enabled": false, "cni_agent_run_dir": "/tmp", "dns": {}, "exclude_namespaces": [ "istio-system" ], "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 - 733 bytes - Viewed (0) -
cni/test/testdata/expected/YYY-istio-cni.conf
{ "cniVersion": "0.3.1", "name": "istio-cni", "type": "istio-cni", "ipam": {}, "dns": {}, "plugin_log_level": "debug", "cni_agent_run_dir": "/tmp", "ambient_enabled": false, "exclude_namespaces": [ "istio-system" ]
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 01 18:38:14 UTC 2024 - 241 bytes - Viewed (0) -
cni/test/testdata/pre/nover_calico.conflist
{ "name": "k8s-pod-network", "plugins": [ { "type": "calico", "etcd_endpoints": "http://10.110.0.136:6666", "plugin_log_level": "info", "mtu": 1500, "ipam": { "type": "calico-ipam" }, "policy": { "type": "k8s" }, "kubernetes": { "kubeconfig": "/etc/cni/net.d/calico-kubeconfig" } }, { "type": "portmap",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue May 21 18:32:01 UTC 2024 - 503 bytes - Viewed (0) -
cni/test/testdata/pre/noplugins_calico.conflist
{ "name": "k8s-pod-network", "cniVersion": "0.3.1", "pugins": [ { "type": "calico", "etcd_endpoints": "http://10.110.0.136:6666", "plugin_log_level": "info", "mtu": 1500, "ipam": { "type": "calico-ipam" }, "policy": { "type": "k8s" }, "kubernetes": { "kubeconfig": "/etc/cni/net.d/calico-kubeconfig" } }, {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue May 21 18:32:01 UTC 2024 - 527 bytes - Viewed (0) -
cni/pkg/install/cniconfig_test.go
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.go
// runtime args, see CONVENTIONS.md in the CNI spec. type Config struct { types.NetConf // Add plugin-specific flags here PluginLogLevel string `json:"plugin_log_level"` CNIAgentRunDir string `json:"cni_agent_run_dir"` AmbientEnabled bool `json:"ambient_enabled"` ExcludeNamespaces []string `json:"exclude_namespaces"` }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Aug 14 19:36:19 UTC 2024 - 10.5K bytes - Viewed (0) -
cni/pkg/plugin/plugin_test.go
"version": "4", "address": "10.0.0.2/24", "gateway": "10.0.0.1", "interface": 0 } ], "routes": [] }, "plugin_log_level": "debug", "cni_agent_run_dir": "%s", "ambient_enabled": %t, "exclude_namespaces": ["testExcludeNS"], "kubernetes": { "k8s_api_root": "APIRoot", "kubeconfig": "testK8sConfig",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 17.3K bytes - Viewed (0) -
cni/pkg/config/config.go
b.WriteString("ChainedCNIPlugin: " + fmt.Sprint(c.ChainedCNIPlugin) + "\n") b.WriteString("CNIAgentRunDir: " + fmt.Sprint(c.CNIAgentRunDir) + "\n") b.WriteString("PluginLogLevel: " + c.PluginLogLevel + "\n") b.WriteString("KubeconfigMode: " + fmt.Sprintf("%#o", c.KubeconfigMode) + "\n") b.WriteString("KubeCAFile: " + c.KubeCAFile + "\n") b.WriteString("SkipTLSVerify: " + fmt.Sprint(c.SkipTLSVerify) + "\n")
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 16 15:33:47 UTC 2024 - 5.7K bytes - Viewed (0) -
cni/pkg/install/cniconfig.go
"istio.io/istio/cni/pkg/util" "istio.io/istio/pkg/file" ) func createCNIConfigFile(ctx context.Context, cfg *config.InstallConfig) (string, error) { pluginConfig := plugin.Config{ PluginLogLevel: cfg.PluginLogLevel, CNIAgentRunDir: cfg.CNIAgentRunDir, AmbientEnabled: cfg.AmbientEnabled, ExcludeNamespaces: strings.Split(cfg.ExcludeNamespaces, ","), } pluginConfig.Name = "istio-cni"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 01 18:38:14 UTC 2024 - 8.2K bytes - Viewed (0) -
cni/pkg/cmd/root.go
// what level to use for itself. // This masks the fact we are doing this weird log-over-UDS to users, and allows them to configure it the same way. PluginLogLevel: istiolog.LevelToString(istiolog.FindScope(constants.CNIPluginLogScope).GetOutputLevel()), KubeconfigMode: viper.GetInt(constants.KubeconfigMode), KubeCAFile: viper.GetString(constants.KubeCAFile),
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 16 15:33:47 UTC 2024 - 12.7K bytes - Viewed (0)