Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 93 for includeinboundports (0.67 sec)

  1. pkg/kube/inject/testdata/inject/traffic-annotations-bad-includeinboundports.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: traffic
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: traffic
      template:
        metadata:
          annotations:
            traffic.sidecar.istio.io/includeInboundPorts: "bad"
          labels:
            app: traffic
        spec:
          containers:
            - name: traffic
              image: "fake.docker.io/google-samples/traffic-go-gke:1.0"
              ports:
                - name: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 465 bytes
    - Viewed (0)
  2. cni/pkg/plugin/plugin_test.go

    		t.Fatalf("expected nsenterFunc to be called")
    	}
    	r := mockIntercept.lastRedirect[len(mockIntercept.lastRedirect)-1]
    	if r.includeInboundPorts != "*" {
    		t.Fatalf("expect includeInboundPorts has value '*' set by istio, actual %v", r.includeInboundPorts)
    	}
    }
    
    func TestCmdAddTwoContainersWithStarInboundPort(t *testing.T) {
    	pod, ns := buildFakePodAndNSForClient()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. cni/pkg/plugin/sidecar_redirect.go

    	redir.excludeInboundPorts = strings.TrimSpace(redir.excludeInboundPorts)
    	if len(redir.excludeInboundPorts) > 0 && redir.excludeInboundPorts[len(redir.excludeInboundPorts)-1] != ',' {
    		redir.excludeInboundPorts += ","
    	}
    	redir.excludeInboundPorts += "15020,15021,15090"
    	redir.excludeInboundPorts = strings.Join(dedupPorts(splitPorts(redir.excludeInboundPorts)), ",")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/traffic-annotations-empty-includes.yaml

    metadata:
      name: traffic
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: traffic
      template:
        metadata:
          annotations:
            traffic.sidecar.istio.io/includeInboundPorts: ""
            traffic.sidecar.istio.io/excludeInboundPorts: "4,5,6"
            traffic.sidecar.istio.io/includeOutboundIPRanges: ""
            traffic.sidecar.istio.io/excludeOutboundIPRanges: "10.96.0.2/24,10.96.0.3/24"
          labels:
            app: traffic
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 671 bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inputs/merge-probers.yaml.43.values.gen.yaml

          "componentLogLevel": "misc:error",
          "enableCoreDump": false,
          "excludeIPRanges": "",
          "excludeInboundPorts": "",
          "excludeOutboundPorts": "",
          "holdApplicationUntilProxyStarts": true,
          "image": "proxyv2",
          "includeIPRanges": "*",
          "includeInboundPorts": "*",
          "includeOutboundPorts": "",
          "logLevel": "warning",
          "outlierLogPath": "",
          "privileged": false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inputs/hello.yaml.1.values.gen.yaml

          "clusterDomain": "cluster.local",
          "componentLogLevel": "misc:error",
          "enableCoreDump": false,
          "excludeIPRanges": "",
          "excludeInboundPorts": "",
          "excludeOutboundPorts": "",
          "image": "proxyTest",
          "includeIPRanges": "*",
          "includeInboundPorts": "*",
          "includeOutboundPorts": "",
          "logLevel": "warning",
          "outlierLogPath": "",
          "privileged": false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inputs/hello.yaml.10.values.gen.yaml

          "clusterDomain": "cluster.local",
          "componentLogLevel": "misc:error",
          "enableCoreDump": false,
          "excludeIPRanges": "",
          "excludeInboundPorts": "",
          "excludeOutboundPorts": "",
          "image": "proxyv2",
          "includeIPRanges": "*",
          "includeInboundPorts": "*",
          "includeOutboundPorts": "",
          "logLevel": "warning",
          "outlierLogPath": "",
          "privileged": false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/traffic-annotations-wildcards.yaml

    metadata:
      name: traffic
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: traffic
      template:
        metadata:
          annotations:
            traffic.sidecar.istio.io/includeInboundPorts: "*"
            traffic.sidecar.istio.io/excludeInboundPorts: "4,5,6"
            traffic.sidecar.istio.io/includeOutboundIPRanges: "*"
            traffic.sidecar.istio.io/excludeOutboundIPRanges: "10.96.0.2/24,10.96.0.3/24"
          labels:
            app: traffic
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 673 bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/traffic-annotations.yaml

          annotations:
            # We set 4 CPUs here and concurrency=0 below. Expect concurrency to be set to 4.
            sidecar.istio.io/proxyCPU: 4000m
            traffic.sidecar.istio.io/includeInboundPorts: "1,2,3"
            traffic.sidecar.istio.io/excludeInboundPorts: "4,5,6"
            traffic.sidecar.istio.io/excludeOutboundPorts: "7,8,9"
            traffic.sidecar.istio.io/includeOutboundIPRanges: "127.0.0.1/24,10.96.0.1/24"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 12 16:44:33 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  10. releasenotes/notes/36644.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - https://github.com/istio/istio/issues/36644
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 07 03:19:53 UTC 2022
    - 235 bytes
    - Viewed (0)
Back to top