Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for ExcludeNamespaces (0.14 sec)

  1. cni/pkg/config/config.go

    	b.WriteString("KubeCAFile: " + c.KubeCAFile + "\n")
    	b.WriteString("SkipTLSVerify: " + fmt.Sprint(c.SkipTLSVerify) + "\n")
    
    	b.WriteString("ExcludeNamespaces: " + fmt.Sprint(c.ExcludeNamespaces) + "\n")
    	b.WriteString("K8sServiceProtocol: " + c.K8sServiceProtocol + "\n")
    	b.WriteString("K8sServiceHost: " + c.K8sServiceHost + "\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)
  2. cni/pkg/install/cniconfig.go

    	pluginConfig := plugin.Config{
    		PluginLogLevel:    cfg.PluginLogLevel,
    		CNIAgentRunDir:    cfg.CNIAgentRunDir,
    		AmbientEnabled:    cfg.AmbientEnabled,
    		ExcludeNamespaces: strings.Split(cfg.ExcludeNamespaces, ","),
    	}
    
    	pluginConfig.Name = "istio-cni"
    	pluginConfig.Type = "istio-cni"
    	pluginConfig.CNIVersion = "0.3.1"
    
    	marshalledJSON, err := json.MarshalIndent(pluginConfig, "", "  ")
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Aug 01 18:38:14 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. cni/pkg/constants/constants.go

    	LogUDSSocket             = "log-uds-socket"
    	ZtunnelUDSAddress        = "ztunnel-uds-address"
    	CNIEventSocket           = "cni-event-address"
    	CNIAgentRunDir           = "cni-agent-run-dir"
    	ExcludeNamespaces        = "exclude-namespaces"
    	AmbientEnabled           = "ambient-enabled"
    	AmbientDNSCapture        = "ambient-dns-capture"
    	AmbientIPv6              = "ambient-ipv6"
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Aug 16 15:33:47 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. cni/pkg/cmd/root.go

    		CNIBinSourceDir:  constants.CNIBinDir,
    		CNIBinTargetDirs: []string{constants.HostCNIBinDir},
    		MonitoringPort:   viper.GetInt(constants.MonitoringPort),
    
    		ExcludeNamespaces: viper.GetString(constants.ExcludeNamespaces),
    		ZtunnelUDSAddress: viper.GetString(constants.ZtunnelUDSAddress),
    
    		AmbientEnabled:           viper.GetBool(constants.AmbientEnabled),
    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/pkg/plugin/plugin.go

    	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"`
    }
    
    // K8sArgs is the valid CNI_ARGS used for Kubernetes
    // The field names need to match exact keys in containerd args for unmarshalling
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Aug 14 19:36:19 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. cni/test/install_cni.go

    			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)
  7. cni/pkg/plugin/plugin_test.go

        },
        "loglevel": "debug",
    	"ambient_enabled": %t,
        "kubernetes": {
            "k8sapiroot": "APIRoot",
            "kubeconfig": "testK8sConfig",
            "nodename": "testNodeName",
            "excludenamespaces": "testNS",
            "cnibindir": "/testDirectory"
        }
        }`
    
    	pod, ns := buildFakePodAndNSForClient()
    	testDoAddRun(t, fmt.Sprintf(confNoPrevResult, false), testNSName, pod, ns)
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Oct 09 16:05:45 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top