Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 201 for ContainerPort (0.16 sec)

  1. operator/pkg/patch/patch_test.go

            - --validation-webhook-config-file
            name: galley
            ports:
            - containerPort: 443
            - containerPort: 15014
            - containerPort: 9901
    `,
    		},
    		{
    			desc:  "UpdateLeaf",
    			path:  `spec.template.spec.containers.[name:galley].ports.[containerPort:15014].containerPort`,
    			value: `22222`,
    			want: `
    apiVersion: apps/v1
    kind: Deployment
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 29 08:32:11 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/nodeports/node_ports_test.go

    				{
    					ContainerPort: 8012,
    					HostPort:      8012,
    					Protocol:      v1.ProtocolTCP,
    				}}).ContainerPort([]v1.ContainerPort{
    				{
    					ContainerPort: 8013,
    					HostPort:      8013,
    					Protocol:      v1.ProtocolTCP,
    				},
    				{
    					ContainerPort: 8014,
    					HostPort:      8014,
    					Protocol:      v1.ProtocolTCP,
    				}}).ContainerPort([]v1.ContainerPort{
    				{
    					ContainerPort: 8015,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 11:02:11 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  3. pkg/api/pod/warnings_test.go

    					{
    						Name: "foo1",
    						Ports: []api.ContainerPort{
    							{ContainerPort: 80, HostPort: 80, Protocol: api.ProtocolUDP},
    							{ContainerPort: 180, HostPort: 80, Protocol: api.ProtocolUDP},
    							{ContainerPort: 80, HostPort: 80, Protocol: api.ProtocolUDP},
    						},
    					},
    					{
    						Name: "foo",
    						Ports: []api.ContainerPort{
    							{ContainerPort: 80, HostPort: 80, Protocol: api.ProtocolUDP},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/kubelet/container/helpers_test.go

    	port := func(name string, protocol v1.Protocol, containerPort, hostPort int32, ip string) v1.ContainerPort {
    		return v1.ContainerPort{
    			Name:          name,
    			Protocol:      protocol,
    			ContainerPort: containerPort,
    			HostPort:      hostPort,
    			HostIP:        ip,
    		}
    	}
    	portMapping := func(protocol v1.Protocol, containerPort, hostPort int, ip string) PortMapping {
    		return PortMapping{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 01:55:46 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  8. 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)
  9. pkg/scheduler/framework/types_test.go

    			Containers([]v1.Container{st.MakeContainer().ResourceRequests(map[v1.ResourceName]string{
    				v1.ResourceCPU:    "100m",
    				v1.ResourceMemory: "500",
    			}).ContainerPort([]v1.ContainerPort{{
    				HostIP:   "127.0.0.1",
    				HostPort: 80,
    				Protocol: "TCP",
    			}}).Obj()}).
    			Obj(),
    
    		st.MakePod().UID("test-2").Namespace("node_info_cache_test").Name("test-2").Node(nodeName).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/output/ingressgateway_k8s_settings.golden.yaml

            image: gcr.io/istio-testing/proxyv2:latest
            name: istio-proxy
            ports:
            - containerPort: 15021
              protocol: TCP
            - containerPort: 8080
              protocol: TCP
            - containerPort: 8443
              protocol: TCP
            - containerPort: 15090
              name: http-envoy-prom
              protocol: TCP
            readinessProbe:
              failureThreshold: 30
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 14.3K bytes
    - Viewed (0)
Back to top