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 17: Line 17:
 
       targetPort: 9376
 
       targetPort: 9376
  
 +
If targetPort is not specified then same port value is used also as <code>[[targetPort]]</code>
  
 
== See also ==
 
== See also ==

Revision as of 11:50, 19 April 2020

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

See also

Advertising: