Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 71 for excludeIPRanges (0.51 sec)

  1. pkg/kube/inject/testdata/inputs/hello-openshift.yaml.47.values.gen.yaml

        "priorityClassName": "",
        "proxy": {
          "autoInject": "enabled",
          "clusterDomain": "cluster.local",
          "componentLogLevel": "misc:error",
          "enableCoreDump": false,
          "excludeIPRanges": "",
          "excludeInboundPorts": "",
          "excludeOutboundPorts": "",
          "image": "proxyv2",
          "includeIPRanges": "*",
          "includeInboundPorts": "*",
          "includeOutboundPorts": "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inputs/hello-probes.yaml.18.values.gen.yaml

        "priorityClassName": "",
        "proxy": {
          "autoInject": "enabled",
          "clusterDomain": "cluster.local",
          "componentLogLevel": "misc:error",
          "enableCoreDump": false,
          "excludeIPRanges": "",
          "excludeInboundPorts": "",
          "excludeOutboundPorts": "",
          "holdApplicationUntilProxyStarts": true,
          "image": "proxyv2",
          "includeIPRanges": "*",
          "includeInboundPorts": "*",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inputs/hello.yaml.14.values.gen.yaml

        "priorityClassName": "",
        "proxy": {
          "autoInject": "enabled",
          "clusterDomain": "cluster.local",
          "componentLogLevel": "misc:error",
          "enableCoreDump": false,
          "excludeIPRanges": "",
          "excludeInboundPorts": "",
          "excludeOutboundPorts": "",
          "image": "proxyv2",
          "includeIPRanges": "*",
          "includeInboundPorts": "*",
          "includeOutboundPorts": "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inputs/hello.yaml.3.values.gen.yaml

        "priorityClassName": "",
        "proxy": {
          "autoInject": "enabled",
          "clusterDomain": "cluster.local",
          "componentLogLevel": "misc:error",
          "enableCoreDump": false,
          "excludeIPRanges": "",
          "excludeInboundPorts": "",
          "excludeOutboundPorts": "",
          "image": "proxyv2",
          "includeIPRanges": "*",
          "includeInboundPorts": "*",
          "includeOutboundPorts": "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. pkg/kube/inject/validate.go

    			return fmt.Errorf("includeIPRanges invalid: %v", e)
    		}
    	}
    	return nil
    }
    
    // ValidateExcludeIPRanges validates the excludeIPRanges parameter
    func ValidateExcludeIPRanges(ipRanges string) error {
    	if e := validateCIDRList(ipRanges); e != nil {
    		return fmt.Errorf("excludeIPRanges invalid: %v", e)
    	}
    	return nil
    }
    
    // ValidateIncludeInboundPorts validates the includeInboundPorts parameter
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inputs/custom-template.yaml.40.values.gen.yaml

        "priorityClassName": "",
        "proxy": {
          "autoInject": "enabled",
          "clusterDomain": "cluster.local",
          "componentLogLevel": "misc:error",
          "enableCoreDump": false,
          "excludeIPRanges": "",
          "excludeInboundPorts": "",
          "excludeOutboundPorts": "",
          "image": "proxyv2",
          "includeIPRanges": "*",
          "includeInboundPorts": "*",
          "includeOutboundPorts": "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. operator/pkg/validate/validate_values.go

    )
    
    // DefaultValuesValidations maps a data path to a validation function.
    var DefaultValuesValidations = map[string]ValidatorFunc{
    	"global.proxy.includeIPRanges":     validateIPRangesOrStar,
    	"global.proxy.excludeIPRanges":     validateIPRangesOrStar,
    	"global.proxy.includeInboundPorts": validateStringList(validatePortNumberString),
    	"global.proxy.excludeInboundPorts": validateStringList(validatePortNumberString),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  8. operator/pkg/validate/validate_test.go

    			desc: "CommonConfig",
    			yamlStr: `
    hub: docker.io/istio
    tag: v1.2.3
    meshConfig:
      rootNamespace: istio-system
    values:
      global:
        proxy:
          includeIPRanges: "1.1.0.0/16,2.2.0.0/16"
          excludeIPRanges: "3.3.0.0/16,4.4.0.0/16"
    
    `,
    		},
    		{
    			desc: "BadTag",
    			yamlStr: `
    hub: ?illegal-tag!
    `,
    			wantErrs: makeErrors([]string{`invalid value Hub: ?illegal-tag!`}),
    		},
    		{
    			desc: "BadHub",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 25 11:44:31 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. manifests/charts/istiod-remote/files/injection-template.yaml

        {{ with annotation .ObjectMeta `traffic.sidecar.istio.io/excludeOutboundIPRanges` .Values.global.proxy.excludeIPRanges }}traffic.sidecar.istio.io/excludeOutboundIPRanges: "{{.}}",{{ end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

        {{ with annotation .ObjectMeta `traffic.sidecar.istio.io/excludeOutboundIPRanges` .Values.global.proxy.excludeIPRanges }}traffic.sidecar.istio.io/excludeOutboundIPRanges: "{{.}}",{{ end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top