13 lines
267 B
YAML
Executable file
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 }}
|