Merge pull request #72300 from nsega/fix-broken-link

Fix broken list of 'Service/Publishing services - service types'
pull/564/head
Kubernetes Prow Robot 2019-02-18 21:32:08 -08:00 committed by GitHub
commit 42b7bb1c18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -10675,7 +10675,7 @@
"description": "sessionAffinityConfig contains the configurations of session affinity." "description": "sessionAffinityConfig contains the configurations of session affinity."
}, },
"type": { "type": {
"description": "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 specified, by manual construction of an Endpoints object. If clusterIP is \"None\", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a stable IP. \"NodePort\" builds on ClusterIP and allocates a port on every node which routes to the clusterIP. \"LoadBalancer\" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the clusterIP. More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services---service-types", "description": "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 specified, by manual construction of an Endpoints object. If clusterIP is \"None\", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a stable IP. \"NodePort\" builds on ClusterIP and allocates a port on every node which routes to the clusterIP. \"LoadBalancer\" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the clusterIP. More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types",
"type": "string" "type": "string"
} }
}, },

View File

@ -4292,7 +4292,7 @@ message ServiceSpec {
// "LoadBalancer" builds on NodePort and creates an // "LoadBalancer" builds on NodePort and creates an
// external load-balancer (if supported in the current cloud) which routes // external load-balancer (if supported in the current cloud) which routes
// to the clusterIP. // to the clusterIP.
// More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services---service-types // More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types
// +optional // +optional
optional string type = 4; optional string type = 4;

View File

@ -3495,7 +3495,7 @@ type ServiceSpec struct {
// "LoadBalancer" builds on NodePort and creates an // "LoadBalancer" builds on NodePort and creates an
// external load-balancer (if supported in the current cloud) which routes // external load-balancer (if supported in the current cloud) which routes
// to the clusterIP. // to the clusterIP.
// More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services---service-types // More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types
// +optional // +optional
Type ServiceType `json:"type,omitempty" protobuf:"bytes,4,opt,name=type,casttype=ServiceType"` Type ServiceType `json:"type,omitempty" protobuf:"bytes,4,opt,name=type,casttype=ServiceType"`