14 lines
334 B
YAML
14 lines
334 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ .Values.service.name }}
|
|
namespace: {{ .Values.namespace }}
|
|
spec:
|
|
selector:
|
|
app: {{ .Values.deployment.labels.app }}
|
|
ports:
|
|
- protocol: TCP
|
|
port: {{ .Values.service.port }}
|
|
targetPort: {{ .Values.deployment.containerPort }}
|
|
type: {{ .Values.service.type }}
|