Fix port name

This commit is contained in:
Jonny Ervine 2024-02-24 21:11:56 +08:00
parent dd80179fc8
commit a1c328192b

View File

@ -33,17 +33,17 @@ spec:
image: "{{ .Values.image.repository }}:{{ .Chart.AppVersion }}" image: "{{ .Values.image.repository }}:{{ .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }} imagePullPolicy: {{ .Values.image.pullPolicy }}
ports: ports:
- name: http - name: metrics
containerPort: 9000 containerPort: 9000
protocol: TCP protocol: TCP
livenessProbe: livenessProbe:
httpGet: httpGet:
path: / path: /
port: http port: metrics
readinessProbe: readinessProbe:
httpGet: httpGet:
path: / path: /
port: http port: metrics
resources: resources:
{{- toYaml .Values.resources | nindent 12 }} {{- toYaml .Values.resources | nindent 12 }}
{{- with .Values.nodeSelector }} {{- with .Values.nodeSelector }}