Difference between revisions of "Kubernetes services"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Tags: Mobile web edit, Mobile edit
Line 26: Line 26:
 
* <code>[[kubectl get services]]</code>
 
* <code>[[kubectl get services]]</code>
 
* [[CKA v1.15]]: Understand Services
 
* [[CKA v1.15]]: Understand Services
* [[CKA v1.18]]:
+
* [[CKA v1.18]]: Understand Services and other [[network primitives]]
  
 
== See also ==
 
== See also ==

Revision as of 17:29, 10 May 2020

A Kubernetes service is an abstraction which defines a logical set of Pods and a policy by which to access. [1]



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


Related terms

See also

  • https://kubernetes.io/docs/concepts/services-networking/service/
  • Advertising: