Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. pkg/kube/inject/testdata/inject/hello-probes.yaml.injected

            - name: PROXY_CONFIG
              value: |
                {}
            - 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.4K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/https-probes.yaml.injected

            - name: PROXY_CONFIG
              value: |
                {}
            - 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.5K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/validation/validation_test.go

    	}{{
    		name: "HostPort is not allocated while containers use the same port with different protocol",
    		containers: []v1.Container{{
    			Ports: []v1.ContainerPort{{
    				HostPort: 8080,
    				Protocol: v1.ProtocolUDP,
    			}},
    		}, {
    			Ports: []v1.ContainerPort{{
    				HostPort: 8080,
    				Protocol: v1.ProtocolTCP,
    			}},
    		}},
    		accumulator: &sets.String{},
    		fldPath:     field.NewPath("spec", "containers"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. hack/testdata/multi-resource-rclist-modify.json

                   "spec":{
                      "containers":[{
                        "name": "mock-container",
                        "image": "registry.k8s.io/pause:3.10",
                        "ports":[{
                            "containerPort":9949,
                            "protocol":"TCP"
                         }]
                      }]
                   }
                }
             }
          },
          {
            "kind":"ReplicationController",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/ready_live.yaml

              ports:
                - name: http
                  containerPort: 80
              livenessProbe:
                httpGet:
                  port: http
              readinessProbe:
                httpGet:
                  port: 3333
            - name: world
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
                - name: http
                  containerPort: 90
              livenessProbe:
                httpGet:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 956 bytes
    - Viewed (0)
  6. samples/bookinfo/platform/kube/bookinfo-dualstack.yaml

          serviceAccountName: bookinfo-details
          containers:
          - name: details
            image: docker.io/istio/examples-bookinfo-details-v1:1.20.1
            imagePullPolicy: IfNotPresent
            ports:
            - containerPort: 9080
    ---
    ##################################################################################################
    # Ratings service
    ##################################################################################################
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/output/pilot_override_values.golden.yaml

            - name: PLATFORM
              value: ""
            image: docker.io/istio/pilot:1.1.4
            name: discovery
            ports:
            - containerPort: 8080
              protocol: TCP
            - containerPort: 15010
              protocol: TCP
            - containerPort: 15017
              protocol: TCP
            readinessProbe:
              httpGet:
                path: /ready
                port: 8080
              initialDelaySeconds: 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/https-probes.yaml

                - name: http
                  containerPort: 80
              livenessProbe:
                httpGet:
                  port: http
              readinessProbe:
                httpGet:
                  port: 3333
                  scheme: HTTPS
            - name: world
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
                - name: http
                  containerPort: 90
              livenessProbe:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 984 bytes
    - Viewed (0)
  9. samples/httpbin/sample-client/fortio-deploy.yaml

            app: fortio
        spec:
          containers:
          - name: fortio
            image: fortio/fortio:latest_release
            imagePullPolicy: Always
            ports:
            - containerPort: 8080
              name: http-fortio
            - containerPort: 8079
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 10 02:32:01 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/two_container.yaml

              ports:
                - name: http
                  containerPort: 80
              readinessProbe:
                httpGet:
                  path: /ip
                  port: 8000
            - name: world
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
                - name: http
                  containerPort: 90
              readinessProbe:
                httpGet:
                  path: /ipv6
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 816 bytes
    - Viewed (0)
Back to top