Difference between revisions of "Kubernetes services"

From wikieduonline
Jump to navigation Jump to search
Line 1: Line 1:
A Kubernetes [[service]] is an abstraction which defines a logical set of [[Pods]] and a [[policy]] by which to access. <ref>https://kubernetes.io/docs/concepts/services-networking/service/</ref>
+
A Kubernetes [[service]] is an abstraction which defines a logical set of [[Pods]] and a [[policy]] by which to access.
 +
* https://kubernetes.io/docs/concepts/services-networking/service/
  
 
Kubernetes sample service: <code>my-service</code>
 
Kubernetes sample service: <code>my-service</code>

Revision as of 10:13, 3 March 2022

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

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

Commands

Changelog


Related terms

See also

Advertising: