gobuch/cloud-provider/google-cloud-sample/service-manifest.yml
2020-08-21 06:26:40 +02:00

18 lines
522 B
YAML

# This Service manifest defines:
# - a load balancer for pods matching label "app: go-hello-world"
# - exposing the application to the public Internet (type:LoadBalancer)
# - routes port 80 of the load balancer to the port 8080 of the Pods.
# Syntax reference https://kubernetes.io/docs/concepts/configuration/overview/
apiVersion: v1
kind: Service
metadata:
name: google-cloud-sample-external
spec:
type: LoadBalancer
selector:
app: google-cloud-sample
ports:
- name: http
port: 80
targetPort: 8080