Difference between revisions of "Kubernetes services"
Jump to navigation
Jump to search
↑ https://kubernetes.io/docs/concepts/services-networking/service/
m (Welcome moved page Kubernetes Services to Kubernetes services) |
|||
Line 6: | Line 6: | ||
Kubernetes sample service: <code>my-service</code> | Kubernetes sample service: <code>my-service</code> | ||
apiVersion: v1 | apiVersion: v1 | ||
− | '''kind: Service''' | + | '''[[kind]]: Service''' |
metadata: | metadata: | ||
name: my-service | name: my-service |
Revision as of 07:02, 3 May 2020
A Kubernetes service is an abstraction which defines a logical set of Pods and a policy by which to access. [1]
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
Related terms
kubectl get services
- CKA v1.15: Understand Services
- CKA v1.18:
See also
Advertising: