We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6eceab8 + 2314cf7 commit acf28dbCopy full SHA for acf28db
2 files changed
helm/templates/web/service.yaml
@@ -10,5 +10,8 @@ spec:
10
- port: {{ .Values.web.service.port }}
11
targetPort: {{ .Values.web.service.targetPort }}
12
protocol: {{ .Values.web.service.protocol }}
13
+ {{- if eq .Values.web.service.type "NodePort" }}
14
+ nodePort: {{ .Values.web.service.nodePort }}
15
+ {{- end }}
16
selector:
17
{{- include "web.labels" . | nindent 4 }}
helm/values.yaml
@@ -14,6 +14,7 @@ web:
port: 80
targetPort: 8080
protocol: TCP
+ nodePort: 30080
18
environment:
19
OPENAI_API_KEY: ""
20
nodeSelector: {}
0 commit comments