Last active
October 3, 2019 08:11
-
-
Save katarzyna-dusza/7a0df2e22cfe4de80ce3a2e88bad635d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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