Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 164 for CNI (0.15 sec)

  1. cni/deployments/kubernetes/Dockerfile.install-cni

    FROM ${BASE_DISTRIBUTION:-debug}
    
    LABEL description="Istio CNI plugin installer."
    
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/istio-cni /opt/cni/bin/istio-cni
    COPY ${TARGETARCH:-amd64}/install-cni /usr/local/bin/install-cni
    
    ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/cni/bin
    WORKDIR /opt/cni/bin
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Feb 07 21:40:24 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  2. cni/pkg/install/testdata/istio-cni.conf

    {
      "cniVersion": "0.3.1",
      "name": "istio-cni",
      "type": "istio-cni",
      "log_level": "debug",
      "kubernetes": {
          "kubeconfig": "/path/to/kubeconfig",
          "cni_bin_dir": "/path/cni/bin"
      }
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jul 01 20:47:54 GMT 2021
    - 201 bytes
    - Viewed (0)
  3. cni/test/testdata/bindir/istio-cni

    John Howard <******@****.***> 1605827959 -0800
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Nov 19 23:19:19 GMT 2020
    - Viewed (0)
  4. manifests/charts/istio-cni/templates/configmap-cni.yaml

        operator.istio.io/component: "Cni"
    data:
      # The CNI network configuration to add to the plugin chain on each node.  The special
      # values in this config will be automatically populated.
      cni_network_config: |-
            {
              "cniVersion": "0.3.1",
              "name": "istio-cni",
              "type": "istio-cni",
              "log_level": {{ quote .Values.cni.logLevel }},
              "log_uds_address": "__LOG_UDS_ADDRESS__",
    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)
  5. cni/test/install_cni.go

    	defaultFileMode = 0o644
    
    	cniConfName          = "CNI_CONF_NAME"
    	chainedCNIPluginName = "CHAINED_CNI_PLUGIN"
    	cniNetworkConfigName = "CNI_NETWORK_CONFIG"
    	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" ]
      }
    }
    `
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 12.5K bytes
    - Viewed (0)
  6. cni/pkg/nodeagent/cni-watcher.go

    	if err != nil {
    		log.Errorf("Failed to unmarshal CNI plugin event: %v", err)
    		return msg, err
    	}
    
    	log.Debugf("Deserialized CNI plugin event: %+v", msg)
    	return msg, nil
    }
    
    func (s *CniPluginServer) ReconcileCNIAddEvent(ctx context.Context, addCmd CNIPluginAddEvent) error {
    	log := log.WithLabels("cni-event", addCmd)
    
    	log.Debugf("netns: %s", addCmd.Netns)
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Feb 08 18:52:24 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  7. cni/test/testdata/expected/minikube_cni.conflist.expected

          "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 Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Nov 19 23:19:19 GMT 2020
    - 736 bytes
    - Viewed (0)
  8. cni/pkg/install/testdata/istio-cni.conf.template

    {
      "cniVersion": "0.3.1",
      "name": "istio-cni",
      "type": "istio-cni",
      "log_level": "__LOG_LEVEL__",
      "kubernetes": {
          "kubeconfig": "__KUBECONFIG_FILENAME__",
          "cni_bin_dir": "/path/cni/bin"
      }
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jul 01 20:47:54 GMT 2021
    - 213 bytes
    - Viewed (0)
  9. cni/test/testdata/pre/minikube_cni.conf

    John Howard <******@****.***> 1605827959 -0800
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Nov 19 23:19:19 GMT 2020
    - 315 bytes
    - Viewed (0)
  10. cni/test/testdata/expected/minikube_cni.conflist.clean

    John Howard <******@****.***> 1605827959 -0800
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Nov 19 23:19:19 GMT 2020
    - 468 bytes
    - Viewed (0)
Back to top