17 lines
269 B
YAML
17 lines
269 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
labels:
|
|
app: {{ .Values.appName }}
|
|
name: {{ .Values.appName }}-svc
|
|
spec:
|
|
ports:
|
|
- name: 80-80
|
|
port: 80
|
|
protocol: TCP
|
|
targetPort: 80
|
|
selector:
|
|
app: {{ .Values.appName }}
|
|
svc: web
|
|
type: ClusterIP
|