Difference between revisions of "Kubernetes services"

From wikieduonline
Jump to navigation Jump to search
 
(6 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
A Kubernetes [[service]] is an abstraction which defines a logical set of [[Pods]] and a [[policy]] by which to access. When you create a Service, it creates a corresponding [[DNS]] entry.
 
A Kubernetes [[service]] is an abstraction which defines a logical set of [[Pods]] and a [[policy]] by which to access. When you create a Service, it creates a corresponding [[DNS]] entry.
 
* https://kubernetes.io/docs/concepts/services-networking/service/
 
* https://kubernetes.io/docs/concepts/services-networking/service/
 +
* <code>[[kind: Service]]</code>
  
 
== Commands ==
 
== Commands ==
Line 8: Line 9:
 
* <code>[[kubectl create service externalname]]</code>
 
* <code>[[kubectl create service externalname]]</code>
  
 +
== Example ==
 
Kubernetes sample service: <code>my-service</code>
 
Kubernetes sample service: <code>my-service</code>
 
  apiVersion: v1
 
  apiVersion: v1
Line 22: Line 24:
  
 
If <code>targetPort</code> is not specified then same port value is used also as <code>[[targetPort]]</code>
 
If <code>targetPort</code> is not specified then same port value is used also as <code>[[targetPort]]</code>
 
 
  
 
== Changelog ==
 
== Changelog ==
 +
* [[v1.31]] (Aug 2024) [[K8s traffic distribution for Services]]
 
* [[v1.18]] (March 2020) <code>AppProtocol</code> is a new optional field on ports in [[Endpoints]] and [[Services]]
 
* [[v1.18]] (March 2020) <code>AppProtocol</code> is a new optional field on ports in [[Endpoints]] and [[Services]]
  
Line 39: Line 40:
 
* <code>[[kubectl expose]]</code>
 
* <code>[[kubectl expose]]</code>
 
* [[Kubernetes headless service]]
 
* [[Kubernetes headless service]]
 +
* [[Terraform resource: kubernetes_service]]
 +
* [[Kubernetes events]]
 +
* <code>[[service.beta.kubernetes.io]]</code>
 +
* [[service.externalTrafficPolicy]]=Cluster
  
 
== Activities ==
 
== Activities ==

Latest revision as of 15:07, 12 September 2024

A Kubernetes service is an abstraction which defines a logical set of Pods and a policy by which to access. When you create a Service, it creates a corresponding DNS entry.

Commands[edit]

Example[edit]

Kubernetes sample service: my-service

apiVersion: v1
kind: Service
metadata:
  name: my-service
spec:
  selector:
    app: MyAppLabel
  ports:
    - protocol: TCP
      port: 80
      targetPort: 9376

If targetPort is not specified then same port value is used also as targetPort

Changelog[edit]

Related terms[edit]

Activities[edit]

See also[edit]

Advertising: