Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ChainedCNIPlugin (0.12 sec)

  1. cni/test/install_k8s_test.go

    import (
    	"testing"
    
    	install "istio.io/istio/cni/test"
    	"istio.io/istio/pkg/test/env"
    )
    
    type testCase struct {
    	name             string
    	chainedCNIPlugin bool
    	preConfFile      string
    	resultFileName   string
    	// Must set chainedCNIPlugin to true if delayedConfFile is specified
    	delayedConfFile        string
    	expectedOutputFile     string
    	expectedPostCleanFile  string
    	cniConfDirOrderedFiles []string
    }
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Oct 30 23:59:49 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. cni/pkg/config/config.go

    func (c InstallConfig) String() string {
    	var b strings.Builder
    	b.WriteString("MountedCNINetDir: " + c.MountedCNINetDir + "\n")
    	b.WriteString("CNIConfName: " + c.CNIConfName + "\n")
    	b.WriteString("ChainedCNIPlugin: " + fmt.Sprint(c.ChainedCNIPlugin) + "\n")
    	b.WriteString("CNIAgentRunDir: " + fmt.Sprint(c.CNIAgentRunDir) + "\n")
    
    	b.WriteString("PluginLogLevel: " + c.PluginLogLevel + "\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)
  3. cni/pkg/install/cniconfig.go

    	cniConfigFilepath, err := getCNIConfigFilepath(ctx, cfg.CNIConfName, cfg.MountedCNINetDir, cfg.ChainedCNIPlugin)
    	if err != nil {
    		return "", err
    	}
    
    	if cfg.ChainedCNIPlugin {
    		if !file.Exists(cniConfigFilepath) {
    			return "", fmt.Errorf("CNI config file %s removed during configuration", cniConfigFilepath)
    		}
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Aug 01 18:38:14 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. cni/pkg/constants/constants.go

    // limitations under the License.
    
    package constants
    
    // Command line arguments
    const (
    	// Install
    	MountedCNINetDir         = "mounted-cni-net-dir"
    	CNIConfName              = "cni-conf-name"
    	ChainedCNIPlugin         = "chained-cni-plugin"
    	CNINetworkConfigFile     = "cni-network-config-file"
    	CNINetworkConfig         = "cni-network-config"
    	LogLevel                 = "log-level"
    	KubeconfigMode           = "kubeconfig-mode"
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Aug 16 15:33:47 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top