14 lines
305 B
YAML
14 lines
305 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ .Release.Name }}-nodeport
|
|
spec:
|
|
type: NodePort
|
|
selector:
|
|
app: {{ .Release.Name }}
|
|
ports:
|
|
- protocol: TCP
|
|
port: {{ .Values.service.port | default 80 }}
|
|
targetPort: 80
|
|
nodePort: {{ .Values.service.nodePort | default 30080 }}
|