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 39: Line 39:
 
* <code>[[kubectl expose]]</code>
 
* <code>[[kubectl expose]]</code>
 
* [[Kubernetes headless service]]
 
* [[Kubernetes headless service]]
 +
* [[Terraform resource: kubernetes_service]]
  
 
== Activities ==
 
== Activities ==

Revision as of 10:51, 31 March 2023

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.

Commands

Example

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

Activities

See also

Advertising: