Difference between revisions of "Kubernetes services"

From wikieduonline
Jump to navigation Jump to search
Line 33: Line 33:
 
== See also ==
 
== See also ==
 
* {{CKA}}
 
* {{CKA}}
 +
* {{Kubernetes services}}
 
* {{K8s}}
 
* {{K8s}}
  
  
 
[[Category:Kubernetes]]
 
[[Category:Kubernetes]]

Revision as of 20:31, 4 December 2021

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: