Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for plugin_log_level (0.14 sec)

  1. cni/pkg/install/cniconfig_test.go

    			CNIConfName:      c.specifiedConfName,
    			ChainedCNIPlugin: c.chainedCNIPlugin,
    			PluginLogLevel:   "debug",
    			CNIAgentRunDir:   kubeconfigFilename,
    		}
    
    		cfg := config.InstallConfig{
    			CNIConfName:      c.specifiedConfName,
    			ChainedCNIPlugin: c.chainedCNIPlugin,
    			PluginLogLevel:   "debug",
    			CNIAgentRunDir:   kubeconfigFilename,
    		}
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Aug 01 18:38:14 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. cni/test/install_cni.go

    			K8sServicePort:        "443",
    			K8sServiceHost:        "10.110.0.1",
    			MonitoringPort:        0,
    			CNIAgentRunDir:        "/tmp",
    			ChainedCNIPlugin:      chainedCNIPlugin,
    			PluginLogLevel:        "debug",
    			ExcludeNamespaces:     "istio-system",
    			KubeconfigMode:        constants.DefaultKubeconfigMode,
    			CNIConfName:           envPreconf,
    			K8sServiceAccountPath: tempK8sSvcAcctDir,
    		},
    	}
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Aug 01 18:38:14 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top