Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for dnsConfig (0.33 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. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. CHANGELOG/CHANGELOG-1.9.md

    *   [alpha] Added DNSConfig field to PodSpec. "None" mode for DNSPolicy is now supported. ([#55848](https://github.com/kubernetes/kubernetes/pull/55848),[ @MrHohn](https://github.com/MrHohn))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.10.md

    * Adds BETA support for `DNSConfig` field in PodSpec and `DNSPolicy=None`, so configurable pod resolve.conf is now enabled by default. ([#59771](https://github.com/kubernetes/kubernetes/pull/59771), [@MrHohn](https://github.com/MrHohn))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  10. 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