Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for dnsConfig (0.17 sec)

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

    		}
    		if len(dnsConfig.Nameservers) == 0 {
    			return append(allErrs, field.Required(fldPath.Child("nameservers"), fmt.Sprintf("must provide at least one DNS nameserver when `dnsPolicy` is %s", core.DNSNone)))
    		}
    	}
    
    	if dnsConfig != nil {
    		// Validate nameservers.
    		if len(dnsConfig.Nameservers) > MaxDNSNameservers {
    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. staging/src/k8s.io/api/core/v1/types.go

    	// Specifies the DNS parameters of a pod.
    	// Parameters specified here will be merged to the generated DNS
    	// configuration based on DNSPolicy.
    	// +optional
    	DNSConfig *PodDNSConfig `json:"dnsConfig,omitempty" protobuf:"bytes,26,opt,name=dnsConfig"`
    	// If specified, all readiness gates will be evaluated for pod readiness.
    	// A pod is ready when all its containers are ready AND
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/zz_generated.conversion.go

    	out.HostAliases = *(*[]core.HostAlias)(unsafe.Pointer(&in.HostAliases))
    	out.PriorityClassName = in.PriorityClassName
    	out.Priority = (*int32)(unsafe.Pointer(in.Priority))
    	out.DNSConfig = (*core.PodDNSConfig)(unsafe.Pointer(in.DNSConfig))
    	out.ReadinessGates = *(*[]core.PodReadinessGate)(unsafe.Pointer(&in.ReadinessGates))
    	out.RuntimeClassName = (*string)(unsafe.Pointer(in.RuntimeClassName))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	DNSDefault DNSPolicy = "Default"
    
    	// DNSNone indicates that the pod should use empty DNS settings. DNS
    	// parameters such as nameservers and search paths should be defined via
    	// DNSConfig.
    	DNSNone DNSPolicy = "None"
    )
    
    // NodeSelector represents the union of the results of one or more label queries
    // over a set of nodes; that is, it represents the OR of the selectors represented
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"dnsPolicy":                     "Set DNS policy for the pod. Defaults to \"ClusterFirst\". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // Set DNS policy for the pod.
      // Defaults to "ClusterFirst".
      // Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'.
      // DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy.
      // To have DNS options set along with hostNetwork, you have to specify DNS policy
      // explicitly to 'ClusterFirstWithHostNet'.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.json

                  "name"
                ],
                "x-kubernetes-list-type": "map",
                "x-kubernetes-patch-merge-key": "name",
                "x-kubernetes-patch-strategy": "merge"
              },
              "dnsConfig": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.PodDNSConfig"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top