Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for externalname (0.37 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                                                Services. \n Support: Core (Services with
                                                a type other than ExternalName) \n Support:
                                                Implementation-specific (Services with
                                                type ExternalName)"
                                              maxLength: 63
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // (if supported in the current cloud) which routes to the same endpoints
      // as the clusterIP.
      // "ExternalName" aliases this service to the specified externalName.
      // Several other fields do not apply to ExternalName services.
      // More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types
      // +optional
      optional string type = 4;
    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_swagger_doc_generated.go

    	"externalIPs":                   "externalIPs is a list of IP addresses...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // (if supported in the current cloud) which routes to the same endpoints
      // as the clusterIP.
      // "ExternalName" aliases this service to the specified externalName.
      // Several other fields do not apply to ExternalName services.
      // More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types
      // +optional
      optional string type = 4;
    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. staging/src/k8s.io/api/core/v1/types.go

    	// externalName is the external reference that discovery mechanisms will
    	// return as an alias for this service (e.g. a DNS CNAME record). No
    	// proxying will be involved.  Must be a lowercase RFC-1123 hostname
    	// (https://tools.ietf.org/html/rfc1123) and requires `type` to be "ExternalName".
    	// +optional
    	ExternalName string `json:"externalName,omitempty" protobuf:"bytes,10,opt,name=externalName"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. pkg/registry/core/service/storage/storage_test.go

    			defer storage.Store.DestroyFunc()
    
    			for _, itc := range otc.cases {
    				t.Run(itc.name, func(t *testing.T) {
    					// This test is ONLY ExternalName services.
    					itc.svc.Spec.Type = api.ServiceTypeExternalName
    					itc.svc.Spec.ExternalName = "example.com"
    
    					ctx := genericapirequest.NewDefaultContext()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    type ServiceSpec struct {
    	// Type determines how the Service is exposed. Defaults to ClusterIP. Valid
    	// options are ExternalName, ClusterIP, NodePort, and LoadBalancer.
    	// "ExternalName" maps to the specified externalName.
    	// "ClusterIP" allocates a cluster-internal IP address for load-balancing to
    	// endpoints. Endpoints are determined by the selector or if that is not
    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. pkg/apis/core/validation/validation.go

    		}
    
    		// The value (a CNAME) may have a trailing dot to denote it as fully qualified
    		cname := strings.TrimSuffix(service.Spec.ExternalName, ".")
    		if len(cname) > 0 {
    			allErrs = append(allErrs, ValidateDNS1123Subdomain(cname, specPath.Child("externalName"))...)
    		} else {
    			allErrs = append(allErrs, field.Required(specPath.Child("externalName"), ""))
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (1)
  9. CHANGELOG/CHANGELOG-1.15.md

    - kube-proxy: os exit when CleanupAndExit is set to true ([#76732](https://github.com/kubernetes/kubernetes/pull/76732), [@JieJhih](https://github.com/JieJhih))
    - Kubernetes will now allow trailing dots in the externalName of Services of type ExternalName. ([#78385](https://github.com/kubernetes/kubernetes/pull/78385), [@thz](https://github.com/thz))
    
    ### Node
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  10. pkg/apis/core/v1/zz_generated.conversion.go

    	out.SessionAffinity = core.ServiceAffinity(in.SessionAffinity)
    	out.LoadBalancerIP = in.LoadBalancerIP
    	out.LoadBalancerSourceRanges = *(*[]string)(unsafe.Pointer(&in.LoadBalancerSourceRanges))
    	out.ExternalName = in.ExternalName
    	out.ExternalTrafficPolicy = core.ServiceExternalTrafficPolicy(in.ExternalTrafficPolicy)
    	out.HealthCheckNodePort = in.HealthCheckNodePort
    	out.PublishNotReadyAddresses = in.PublishNotReadyAddresses
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
Back to top