Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for exclude_namespaces (0.33 sec)

  1. manifests/charts/istio-cni/templates/configmap-cni.yaml

              "kubernetes": {
                  "kubeconfig": "__KUBECONFIG_FILEPATH__",
                  "cni_bin_dir": {{ .Values.cni.cniBinDir | default $defaultBinDir | quote }},
                  "exclude_namespaces": [ {{ range $idx, $ns := .Values.cni.excludeNamespaces }}{{ if $idx }}, {{ end }}{{ quote $ns }}{{ end }} ]
              }
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  2. cni/test/testdata/expected/YYY-istio-cni.conf

    {
      "cniVersion": "0.3.1",
      "type": "istio-cni",
      "log_level": "info",
      "kubernetes": {
          "kubeconfig": "/etc/cni/net.d/ZZZ-istio-cni-kubeconfig",
          "cni_bin_dir": "/opt/cni/bin",
          "exclude_namespaces": [ "istio-system" ]
      }
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Nov 19 23:19:19 GMT 2020
    - 244 bytes
    - Viewed (0)
  3. cni/test/testdata/expected/10-calico.conflist-istioconfig

        {
          "capabilities": {
            "portMappings": true
          },
          "snat": true,
          "type": "portmap"
        },
        {
          "kubernetes": {
            "cni_bin_dir": "/opt/cni/bin",
            "exclude_namespaces": [
              "istio-system"
            ],
            "kubeconfig": "/etc/cni/net.d/ZZZ-istio-cni-kubeconfig"
          },
          "log_level": "info",
          "type": "istio-cni"
        }
      ]
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Nov 19 23:19:19 GMT 2020
    - 789 bytes
    - Viewed (0)
  4. cni/test/testdata/expected/minikube_cni.conflist.expected

          },
          "isGateway": true,
          "mtu": 1460,
          "name": "rkt.kubernetes.io",
          "type": "bridge"
        },
        {
          "kubernetes": {
            "cni_bin_dir": "/opt/cni/bin",
            "exclude_namespaces": [
              "istio-system"
            ],
            "kubeconfig": "/etc/cni/net.d/ZZZ-istio-cni-kubeconfig"
          },
          "log_level": "info",
          "type": "istio-cni"
        }
      ]
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Nov 19 23:19:19 GMT 2020
    - 736 bytes
    - Viewed (0)
  5. cni/pkg/plugin/plugin.go

    const (
    	ISTIOINIT  = "istio-init"
    	ISTIOPROXY = "istio-proxy"
    )
    
    // Kubernetes a K8s specific struct to hold config
    type Kubernetes struct {
    	Kubeconfig        string   `json:"kubeconfig"`
    	ExcludeNamespaces []string `json:"exclude_namespaces"`
    }
    
    // Config is whatever you expect your configuration json to be. This is whatever
    // is passed in on stdin. Your plugin may wish to expose its functionality via
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Feb 10 00:31:55 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  6. cni/test/install_cni.go

    	cniNetworkConfig     = `{
      "cniVersion": "0.3.1",
      "type": "istio-cni",
      "log_level": "info",
      "kubernetes": {
          "kubeconfig": "__KUBECONFIG_FILEPATH__",
          "cni_bin_dir": "/opt/cni/bin",
          "exclude_namespaces": [ "istio-system" ]
      }
    }
    `
    )
    
    func getEnv(key, fallback string) string {
    	if value, ok := os.LookupEnv(key); ok {
    		return value
    	}
    	return fallback
    }
    
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 12.5K bytes
    - Viewed (0)
  7. cni/pkg/plugin/plugin_test.go

        "ambient_enabled": %t,
        "kubernetes": {
            "k8s_api_root": "APIRoot",
            "kubeconfig": "testK8sConfig",
    		"intercept_type": "%s",
            "node_name": "testNodeName",
            "exclude_namespaces": ["testExcludeNS"],
            "cni_bin_dir": "/testDirectory"
        }
    }`
    
    type mockInterceptRuleMgr struct {
    	lastRedirect []*Redirect
    }
    
    func buildMockConf(ambientEnabled bool, eventURL string) string {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Feb 10 00:31:55 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/files/profile-openshift.yaml

    # CNI must be installed.
    cni:
      cniBinDir: /var/lib/cni/bin
      cniConfDir: /etc/cni/multus/net.d
      chained: false
      cniConfFileName: "istio-cni.conf"
      excludeNamespaces:
        - istio-system
        - kube-system
      logLevel: info
      provider: "multus"
    global:
      platform: openshift
    pilot:
      cni:
        enabled: true
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Feb 28 17:29:38 GMT 2024
    - 413 bytes
    - Viewed (0)
  9. manifests/charts/ztunnel/files/profile-openshift.yaml

    # CNI must be installed.
    cni:
      cniBinDir: /var/lib/cni/bin
      cniConfDir: /etc/cni/multus/net.d
      chained: false
      cniConfFileName: "istio-cni.conf"
      excludeNamespaces:
        - istio-system
        - kube-system
      logLevel: info
      provider: "multus"
    global:
      platform: openshift
    pilot:
      cni:
        enabled: true
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Feb 28 17:29:38 GMT 2024
    - 413 bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/files/profile-openshift.yaml

    # CNI must be installed.
    cni:
      cniBinDir: /var/lib/cni/bin
      cniConfDir: /etc/cni/multus/net.d
      chained: false
      cniConfFileName: "istio-cni.conf"
      excludeNamespaces:
        - istio-system
        - kube-system
      logLevel: info
      provider: "multus"
    global:
      platform: openshift
    pilot:
      cni:
        enabled: true
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Feb 28 17:29:38 GMT 2024
    - 413 bytes
    - Viewed (0)
Back to top