Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for ContainerPort (0.54 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.ContainerPort)(nil), (*core.ContainerPort)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_ContainerPort_To_core_ContainerPort(a.(*v1.ContainerPort), b.(*core.ContainerPort), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.ContainerPort)(nil), (*v1.ContainerPort)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // For more information See https://github.com/kubernetes/kubernetes/issues/108255.
      // Cannot be updated.
      // +optional
      // +patchMergeKey=containerPort
      // +patchStrategy=merge
      // +listType=map
      // +listMapKey=containerPort
      // +listMapKey=protocol
      repeated ContainerPort ports = 6;
    
      // List of sources to populate environment variables in the container.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// If HostNetwork is specified, this must match ContainerPort.
    	// Most containers do not need this.
    	// +optional
    	HostPort int32 `json:"hostPort,omitempty" protobuf:"varint,2,opt,name=hostPort"`
    	// Number of port to expose on the pod's IP address.
    	// This must be a valid port number, 0 < x < 65536.
    	ContainerPort int32 `json:"containerPort" protobuf:"varint,3,opt,name=containerPort"`
    	// Protocol for port. Must be UDP, TCP, or SCTP.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // For more information See https://github.com/kubernetes/kubernetes/issues/108255.
      // Cannot be updated.
      // +optional
      // +patchMergeKey=containerPort
      // +patchStrategy=merge
      // +listType=map
      // +listMapKey=containerPort
      // +listMapKey=protocol
      repeated ContainerPort ports = 6;
    
      // List of sources to populate environment variables in the container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation.go

    			} else {
    				allNames.Insert(port.Name)
    			}
    		}
    		if port.ContainerPort == 0 {
    			allErrs = append(allErrs, field.Required(idxPath.Child("containerPort"), ""))
    		} else {
    			for _, msg := range validation.IsValidPortNum(int(port.ContainerPort)) {
    				allErrs = append(allErrs, field.Invalid(idxPath.Child("containerPort"), port.ContainerPort, msg))
    			}
    		}
    		if port.HostPort != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

            },
            "required": [
              "name"
            ],
            "type": "object"
          },
          "io.k8s.api.core.v1.ContainerPort": {
            "description": "ContainerPort represents a network port in a single container.",
            "properties": {
              "containerPort": {
                "default": 0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    	// template. The same fields as in a PersistentVolumeClaim
    	// are also valid here.
    	Spec PersistentVolumeClaimSpec
    }
    
    // ContainerPort represents a network port in a single container
    type ContainerPort struct {
    	// Optional: If specified, this must be an IANA_SVC_NAME  Each named port
    	// in a pod must have a unique name.
    	// +optional
    	Name string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"containerPort": "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.",
    	"protocol":      "Protocol for port. Must be UDP, TCP, or SCTP. Defaults to \"TCP\".",
    	"hostIP":        "What host IP to bind the external port to.",
    }
    
    func (ContainerPort) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.29.md

      - A `create` or `update` API request with duplicate items in a keyed list no longer wipes out managedFields. Examples include env var entries with the same name, or port entries with the same containerPort in a pod spec.
      - A server-side apply request that makes unrelated changes to an object which has duplicate items in a keyed list no longer fails, and leaves the existing duplicate items as-is.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top