Kubernetes services

From wikieduonline
(Redirected from Kubernetes Services)
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.


kubectl -n nginx-ingress get svc
NAME            TYPE           CLUSTER-IP      EXTERNAL-IP                              PORT(S)                               
AGE
nginx-ingress   LoadBalancer   10.100.100.2   xxxx70yyyy.us-west-1.elb.amazonaws.com    80:31982/TCP,443:30529/TCP            8d

Commands[edit]

Example[edit]

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[edit]

Related terms[edit]

Activities[edit]

See also[edit]

Advertising: