Difference between revisions of "Kubernetes services"

From wikieduonline
Jump to navigation Jump to search
(Created page with "Service is an abstraction which defines a logical set of Pods and a policy by which to access == See also == * {{CKAD}}")
Tags: Mobile web edit, Mobile edit
 
 
(63 intermediate revisions by 4 users not shown)
Line 1: Line 1:
Service is an abstraction which defines a logical set of Pods and a policy by which to access
+
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/
 +
* <code>[[kind: Service]]</code>
  
 +
== Commands ==
 +
* <code>[[kubectl create clusterip]]</code>
 +
* <code>[[kubectl create service loadbalancer]]</code>
 +
* <code>[[kubectl create nodeport]]</code>
 +
* <code>[[kubectl create service externalname]]</code>
  
 +
== Example ==
 +
Kubernetes sample service: <code>my-service</code>
 +
apiVersion: v1
 +
'''[[kind: Service]]'''
 +
metadata:
 +
  name: my-service
 +
spec:
 +
  [[selector:]]
 +
    app: MyAppLabel
 +
  [[ports:]]
 +
    - protocol: [[TCP]]
 +
      port: 80
 +
      targetPort: 9376
 +
 +
If <code>targetPort</code> is not specified then same port value is used also as <code>[[targetPort]]</code>
 +
 +
== 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]]
 +
 +
== Related terms ==
 +
* <code>[[kubectl get services]]</code>
 +
* <code>[[kubectl get svc]]</code>: <code>[[CLUSTER-IP]]      [[EXTERNAL-IP]]</code>
 +
* <code>[[kubectl delete services]] hello-minikube</code>
 +
* [[Deployments]]
 +
* <code>[[ConfigMaps]]</code>
 +
* <code>[[kubectl port-forward]]</code>
 +
* [[Kubernetes Endpoints]]: <code>[[kind: Endpoint]]</code>
 +
* <code>[[kind: ReplicaSet]]</code>
 +
* <code>[[kubectl expose]]</code>
 +
* [[Kubernetes headless service]]
 +
* [[Terraform resource: kubernetes_service]]
 +
* [[Kubernetes events]]
 +
* <code>[[service.beta.kubernetes.io]]</code>
 +
* [[service.externalTrafficPolicy]]=Cluster
 +
 +
== Activities ==
 +
* Review [[CKA 1.23]]: 20% - [[Kubernetes services|Service]] & [[Kubernetes networking|Networking]]
 +
* Review [[CKA v1.18]]: Understand Services and other [[network primitives]]
 +
* Review [[CKA v1.15]]: Understand Services
  
 
== See also ==
 
== See also ==
* {{CKAD}}
+
* {{Kubernetes services}}
 +
 
 +
[[Category:Kubernetes]]

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: