Files
fleet-examples/helm/chart/templates/frontend-service.yaml
Darren Shepherd 56bca25f64 Initial Commit
2020-08-31 22:55:17 -07:00

15 lines
218 B
YAML

apiVersion: v1
kind: Service
metadata:
name: frontend
labels:
app: guestbook
tier: frontend
spec:
type: "{{ .Values.serviceType }}"
ports:
- port: 80
selector:
app: guestbook
tier: frontend