nodejs-ex/helm/nodejs/templates/service.yaml
2017-09-14 17:48:56 -05:00

13 lines
267 B
YAML
Executable file

kind: Service
apiVersion: v1
metadata:
name: {{ .Values.name | quote }}
annotations:
description: Exposes and load balances the application pods
spec:
ports:
- name: web
port: 8080
targetPort: 8080
selector:
name: {{ .Values.name | quote }}