Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ambient_enabled (1.91 sec)

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

              "name": "istio-cni",
              "type": "istio-cni",
              "log_level": {{ quote .Values.cni.logLevel }},
              "log_uds_address": "__LOG_UDS_ADDRESS__",
              {{if .Values.cni.ambient.enabled}}"ambient_enabled": true,{{end}}
              "cni_event_address": "__CNI_EVENT_ADDRESS__",
              "kubernetes": {
                  "kubeconfig": "__KUBECONFIG_FILEPATH__",
    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/pkg/plugin/plugin.go

    	// Add plugin-specific flags here
    	LogLevel        string     `json:"log_level"`
    	LogUDSAddress   string     `json:"log_uds_address"`
    	CNIEventAddress string     `json:"cni_event_address"`
    	AmbientEnabled  bool       `json:"ambient_enabled"`
    	Kubernetes      Kubernetes `json:"kubernetes"`
    }
    
    // K8sArgs is the valid CNI_ARGS used for Kubernetes
    // The field names need to match exact keys in containerd args for unmarshalling
    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)
  3. manifests/charts/istio-cni/templates/daemonset.yaml

                      fieldPath: spec.nodeName
                - name: LOG_LEVEL
                  value: {{ .Values.cni.logLevel | quote }}
                {{- if .Values.cni.ambient.enabled }}
                - name: AMBIENT_ENABLED
                  value: "true"
                {{- end }}
                - name: GOMEMLIMIT
                  valueFrom:
                    resourceFieldRef:
                      resource: limits.memory
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Feb 28 17:29:38 GMT 2024
    - 9.4K bytes
    - Viewed (0)
  4. cni/pkg/plugin/plugin_test.go

                    "gateway": "10.0.0.1",
                    "interface": 0
                }
            ],
            "routes": []
    
        },
        "log_level": "debug",
        "cni_event_address": "%s",
        "ambient_enabled": %t,
        "kubernetes": {
            "k8s_api_root": "APIRoot",
            "kubeconfig": "testK8sConfig",
    		"intercept_type": "%s",
            "node_name": "testNodeName",
            "exclude_namespaces": ["testExcludeNS"],
    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)
  5. cni/pkg/config/config.go

    	b.WriteString("CNIEventAddress: " + fmt.Sprint(c.CNIEventAddress) + "\n")
    	b.WriteString("LogUDSAddress: " + fmt.Sprint(c.LogUDSAddress) + "\n")
    
    	b.WriteString("AmbientEnabled: " + fmt.Sprint(c.AmbientEnabled) + "\n")
    	b.WriteString("AmbientDNSCapture: " + fmt.Sprint(c.AmbientDNSCapture) + "\n")
    	b.WriteString("AmbientIPv6: " + fmt.Sprint(c.AmbientIPv6) + "\n")
    
    	return b.String()
    }
    
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 30 22:24:38 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  6. cni/pkg/cmd/root.go

    		LogUDSAddress:     viper.GetString(constants.LogUDSAddress),
    		CNIEventAddress:   viper.GetString(constants.CNIEventAddress),
    		ZtunnelUDSAddress: viper.GetString(constants.ZtunnelUDSAddress),
    
    		AmbientEnabled:    viper.GetBool(constants.AmbientEnabled),
    		AmbientDNSCapture: viper.GetBool(constants.AmbientDNSCapture),
    		AmbientIPv6:       viper.GetBool(constants.AmbientIPv6),
    	}
    
    	if len(installCfg.K8sNodeName) == 0 {
    		var err error
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 30 22:24:38 GMT 2024
    - 12.5K bytes
    - Viewed (0)
  7. cni/pkg/constants/constants.go

    	SkipTLSVerify        = "skip-tls-verify"
    	MonitoringPort       = "monitoring-port"
    	LogUDSAddress        = "log-uds-address"
    	ZtunnelUDSAddress    = "ztunnel-uds-address"
    	CNIEventAddress      = "cni-event-address"
    	AmbientEnabled       = "ambient-enabled"
    	AmbientDNSCapture    = "ambient-dns-capture"
    	AmbientIPv6          = "ambient-ipv6"
    
    	// Repair
    	RepairEnabled            = "repair-enabled"
    	RepairDeletePods         = "repair-delete-pods"
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 30 22:24:38 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    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__", {{if .Values.cni.ambient.enabled}}"ambient_enabled": true,{{end}} "kubernetes": { "kubeconfig": "__KUBECONFIG_FILEPATH__", "cni_bin_dir": {{ .Values.cni.cniBinDir | default $defaultBinDir | quote }}, "exclude_namespaces": [ {{ range $idx, $ns := .Values.cni.excludeNamespaces }}{{ if $idx }}, {{...
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
Back to top