Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for HostAlias (1.75 sec)

  1. pkg/apis/core/validation/validation.go

    	}
    
    	return allErrs
    }
    
    func ValidateHostAliases(hostAliases []core.HostAlias, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	for i, hostAlias := range hostAliases {
    		allErrs = append(allErrs, validation.IsValidIP(fldPath.Index(i).Child("ip"), hostAlias.IP)...)
    		for j, hostname := range hostAlias.Hostnames {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // The header field name
      optional string name = 1;
    
      // The header field value
      optional string value = 2;
    }
    
    // HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the
    // pod's hosts file.
    message HostAlias {
      // IP address of the host file entry.
      optional string ip = 1;
    
      // Hostnames for the above IP address.
      repeated string hostnames = 2;
    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. pkg/apis/core/types.go

    type PodSchedulingGate struct {
    	// Name of the scheduling gate.
    	// Each scheduling gate must have a unique name field.
    	Name string
    }
    
    // HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the
    // pod's hosts file.
    type HostAlias struct {
    	IP        string
    	Hostnames []string
    }
    
    // Sysctl defines a kernel parameter to be set
    type Sysctl struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      optional string name = 1;
    
      // The header field value
      optional string value = 2;
    }
    
    // HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the
    // pod's hosts file.
    message HostAlias {
      // IP address of the host file entry.
      // +required
      optional string ip = 1;
    
      // Hostnames for the above IP address.
    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_test.go

    				HostNetwork: false,
    			},
    			HostAliases: []core.HostAlias{{IP: "999.999.999.999", Hostnames: []string{"host1", "host2"}}},
    		},
    		"with hostAliases with invalid hostname": {
    			SecurityContext: &core.PodSecurityContext{
    				HostNetwork: false,
    			},
    			HostAliases: []core.HostAlias{{IP: "12.34.56.78", Hostnames: []string{"@#$^#@#$"}}},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	return map_HTTPHeader
    }
    
    var map_HostAlias = map[string]string{
    	"":          "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.",
    	"ip":        "IP address of the host file entry.",
    	"hostnames": "Hostnames for the above IP address.",
    }
    
    func (HostAlias) SwaggerDoc() map[string]string {
    	return map_HostAlias
    }
    
    var map_HostIP = 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)
  7. staging/src/k8s.io/api/core/v1/types.go

    }
    
    const (
    	// The default value for enableServiceLinks attribute.
    	DefaultEnableServiceLinks = true
    )
    
    // HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the
    // pod's hosts file.
    type HostAlias struct {
    	// IP address of the host file entry.
    	// +required
    	IP string `json:"ip" protobuf:"bytes,1,opt,name=ip"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

              }
            },
            "required": [
              "name",
              "value"
            ],
            "type": "object"
          },
          "io.k8s.api.core.v1.HostAlias": {
            "description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.",
            "properties": {
              "hostnames": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.8.md

    * implement proposal 34058: hostPath volume type ([#46597](https://github.com/kubernetes/kubernetes/pull/46597), [@dixudx](https://github.com/dixudx))
    * HostAlias is now supported for both non-HostNetwork Pods and HostNetwork Pods. ([#50646](https://github.com/kubernetes/kubernetes/pull/50646), [@rickypai](https://github.com/rickypai))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__apps__v1_openapi.json

              }
            },
            "required": [
              "name",
              "value"
            ],
            "type": "object"
          },
          "io.k8s.api.core.v1.HostAlias": {
            "description": "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.",
            "properties": {
              "hostnames": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
Back to top