Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tuan78/272c5b8ee19f6554e0a8c743f00f1964 to your computer and use it in GitHub Desktop.
Save tuan78/272c5b8ee19f6554e0a8c743f00f1964 to your computer and use it in GitHub Desktop.
apiVersion: v1
kind: Service
metadata:
name: backend-service-name # SERVICE_NAME
labels:
# we pass selector, to list specific Services:
# kubectl get svc --selector=KEY_SERVICE_SELECTOR
application: backend # KEY_SERVICE_SELECTOR: VALUE_SERVICE_SELECTOR
spec:
type: ClusterIP # options: ClusterIP, NodePort, LoadBalancer, ExternalName
selector:
# thanks to this selector, we specify,
# to which Pods the Service should forward the traffic
application: backend # KEY_POD_SELECTOR: VALUE_POD_SELECTOR
ports:
- name: service-port # name of this port within the Service
protocol: TCP # optional, TCP is set by default, others: UDP, SCTP
port: 80 # SERVICE_PORT - port exposed by this service
# Pod's port number (Pod is targeted by the Service)
targetPort: 8080 # POD_PORT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment