Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 563 for ContainerPort (0.17 sec)

  1. samples/grpc-echo/grpc-echo.yaml

                  port: tcp-health-port
                timeoutSeconds: 1
              name: app
              ports:
              - containerPort: 17070
                protocol: TCP
              - containerPort: 17171
                protocol: TCP
              - containerPort: 8080
                protocol: TCP
              - containerPort: 3333
                name: tcp-health-port
                protocol: TCP
              readinessProbe:
                failureThreshold: 10
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. cluster/addons/dns/kube-dns/kube-dns.yaml.base

            - --v=2
            env:
            - name: PROMETHEUS_PORT
              value: "10055"
            ports:
            - containerPort: 10053
              name: dns-local
              protocol: UDP
            - containerPort: 10053
              name: dns-tcp-local
              protocol: TCP
            - containerPort: 10055
              name: metrics
              protocol: TCP
            volumeMounts:
            - name: kube-dns-config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/kube/testdata/proxyless-custom-image.yaml

              - --grpc=17777
              - --version=bar
              - --istio-version=
              - --crt=/cert.crt
              - --key=/cert.key
            ports:
            - containerPort: 8080
            - containerPort: 3333
              name: tcp-health-port
            - containerPort: 17777
            env:
            - name: INSTANCE_IP
              valueFrom:
                fieldRef:
                  fieldPath: status.podIP
            - name: NAMESPACE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. hack/testdata/rollingupdate-statefulset-rv2.yaml

          - name: nginx
            image: registry.k8s.io/nginx-slim:0.8
            ports:
            - containerPort: 80
              name: web
            command:
            - sh
            - -c
            - 'while true; do sleep 1; done'
          - name: pause
            image: registry.k8s.io/pause:2.0
            ports:
            - containerPort: 81
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 719 bytes
    - Viewed (0)
  5. pkg/api/v1/pod/util_test.go

    		pass:       false,
    	}, {
    		name: "valid str, one ctr with ports",
    		containers: []v1.Container{{Ports: []v1.ContainerPort{{
    			Name:          "",
    			ContainerPort: 11,
    			Protocol:      "UDP",
    		}, {
    			Name:          "p",
    			ContainerPort: 22,
    			Protocol:      "TCP",
    		}, {
    			Name:          "q",
    			ContainerPort: 33,
    			Protocol:      "TCP",
    		}}}},
    		port:     intstr.FromString("q"),
    		expected: 33,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 32.1K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/kube/testdata/proxyless.yaml

              - --version=bar
              - --istio-version=
              - --crt=/cert.crt
              - --key=/cert.key
            ports:
            - containerPort: 7070
            - containerPort: 8080
            - containerPort: 3333
              name: tcp-health-port
            - containerPort: 17171
            env:
            - name: INSTANCE_IP
              valueFrom:
                fieldRef:
                  fieldPath: status.podIP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. plugin/pkg/admission/security/podsecurity/testdata/pod_restricted.yaml

          periodSeconds: 10
          successThreshold: 1
          timeoutSeconds: 5
        name: kubedns
        ports:
        - containerPort: 10053
          name: dns-local
          protocol: UDP
        - containerPort: 10053
          name: dns-tcp-local
          protocol: TCP
        - containerPort: 10055
          name: metrics
          protocol: TCP
        readinessProbe:
          failureThreshold: 3
          httpGet:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.3K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/hello-probes-noProxyHoldApplication-ProxyConfig.yaml.injected

              value: |
                {"holdApplicationUntilProxyStarts":false}
            - name: ISTIO_META_POD_PORTS
              value: |-
                [
                    {"name":"http","containerPort":80}
                    ,{"name":"http","containerPort":90}
                ]
            - name: ISTIO_META_APP_CONTAINERS
              value: hello,world
            - name: GOMEMLIMIT
              valueFrom:
                resourceFieldRef:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. plugin/pkg/admission/security/podsecurity/testdata/pod_baseline.yaml

          periodSeconds: 10
          successThreshold: 1
          timeoutSeconds: 5
        name: kubedns
        ports:
        - containerPort: 10053
          name: dns-local
          protocol: UDP
        - containerPort: 10053
          name: dns-tcp-local
          protocol: TCP
        - containerPort: 10055
          name: metrics
          protocol: TCP
        readinessProbe:
          failureThreshold: 3
          httpGet:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.1K bytes
    - Viewed (0)
  10. samples/tcp-echo/tcp-echo-services.yaml

          containers:
          - name: tcp-echo
            image: docker.io/istio/tcp-echo-server:1.3
            imagePullPolicy: IfNotPresent
            args: [ "9000,9001,9002", "one" ]
            ports:
            - containerPort: 9000
            - containerPort: 9001
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: tcp-echo-v2
      labels:
        app: tcp-echo
        version: v2
    spec:
      replicas: 1
      selector:
        matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top