Kubernetes services

From wikieduonline
Revision as of 11:15, 14 September 2022 by Ant (talk | contribs) (→‎Related terms)
Jump to navigation Jump to search

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.

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

Activities

See also

Advertising: