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