Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 211 for ContainerPort (0.16 sec)

  1. pkg/kubelet/lifecycle/handlers_test.go

    	}{
    		{
    			stringPort: "foo",
    			container: &v1.Container{
    				Ports: []v1.ContainerPort{{Name: "foo", ContainerPort: int32(80)}},
    			},
    			expected: 80,
    		},
    		{
    			container:  &v1.Container{},
    			stringPort: "80",
    			expected:   80,
    		},
    		{
    			container: &v1.Container{
    				Ports: []v1.ContainerPort{
    					{Name: "bar", ContainerPort: int32(80)},
    				},
    			},
    			stringPort: "foo",
    			expected:   -1,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/deployment/waypoint-no-network-label.yaml

            - name: ISTIO_META_MESH_ID
              value: cluster.local
            image: test/proxyv2:test
            name: istio-proxy
            ports:
            - containerPort: 15021
              name: status-port
              protocol: TCP
            - containerPort: 15090
              name: http-envoy-prom
              protocol: TCP
            readinessProbe:
              failureThreshold: 4
              httpGet:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/deployment/waypoint.yaml

            - name: ISTIO_META_MESH_ID
              value: cluster.local
            image: test/proxyv2:test
            name: istio-proxy
            ports:
            - containerPort: 15021
              name: status-port
              protocol: TCP
            - containerPort: 15090
              name: http-envoy-prom
              protocol: TCP
            readinessProbe:
              failureThreshold: 4
              httpGet:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. samples/bookinfo/platform/kube/bookinfo-ratings.yaml

            version: v1
        spec:
          containers:
          - name: ratings
            image: docker.io/istio/examples-bookinfo-ratings-v1:1.20.1
            imagePullPolicy: IfNotPresent
            ports:
            - containerPort: 9080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. samples/bookinfo/platform/kube/bookinfo-details-dualstack.yaml

            version: v1
        spec:
          containers:
          - name: details
            image: docker.io/istio/examples-bookinfo-details-v1:1.20.1
            imagePullPolicy: IfNotPresent
            ports:
            - containerPort: 9080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. samples/bookinfo/platform/kube/bookinfo-reviews-v2.yaml

            image: docker.io/istio/examples-bookinfo-reviews-v2:1.20.1
            imagePullPolicy: IfNotPresent
            env:
            - name: LOG_DIR
              value: "/tmp/logs"
            ports:
            - containerPort: 9080
            volumeMounts:
            - name: tmp
              mountPath: /tmp
            - name: wlp-output
              mountPath: /opt/ibm/wlp/output
          volumes:
          - name: wlp-output
            emptyDir: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. pkg/kubelet/container/container_hash_test.go

    {
      "name": "test_container",
      "image": "foo/image:v1",
      "command": [
        "/bin/testcmd"
      ],
      "args": [
        "/bin/sh",
        "-c",
        "echo abc"
      ],
      "ports": [
        {
          "containerPort": 8001
        }
      ],
      "env": [
        {
          "name": "ENV_FOO",
          "value": "bar"
        },
        {
          "name": "ENV_BAR",
          "valueFrom": {
            "secretKeyRef": {
              "name": "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 01:55:46 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. samples/bookinfo/platform/kube/bookinfo-ratings-v2-mysql-vm.yaml

              - name: MYSQL_DB_PORT
                value: "3306"
              - name: MYSQL_DB_USER
                value: root
              - name: MYSQL_DB_PASSWORD
                value: password
            ports:
            - containerPort: 9080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/deployment/multinetwork.yaml

            - name: ISTIO_META_REQUESTED_NETWORK_VIEW
              value: network-1
            image: test/proxyv2:test
            name: istio-proxy
            ports:
            - containerPort: 15021
              name: status-port
              protocol: TCP
            - containerPort: 15090
              name: http-envoy-prom
              protocol: TCP
            readinessProbe:
              failureThreshold: 4
              httpGet:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/deployment/simple.yaml

            - name: TRUST_DOMAIN
              value: cluster.local
            image: test/proxyv2:test
            name: istio-proxy
            ports:
            - containerPort: 15021
              name: status-port
              protocol: TCP
            - containerPort: 15090
              name: http-envoy-prom
              protocol: TCP
            readinessProbe:
              failureThreshold: 4
              httpGet:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top