From 45023800cd1d1dae085b2965732c7b8d38ec0530 Mon Sep 17 00:00:00 2001 From: liyang Date: Sun, 22 Oct 2023 01:04:18 +0800 Subject: [PATCH] chore: change standalone port values name --- .../greptimedb-standalone/templates/service.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/charts/greptimedb-standalone/templates/service.yaml b/charts/greptimedb-standalone/templates/service.yaml index f5e072b..77fb446 100644 --- a/charts/greptimedb-standalone/templates/service.yaml +++ b/charts/greptimedb-standalone/templates/service.yaml @@ -12,20 +12,20 @@ spec: type: {{ .Values.service.type }} ports: - name: http - port: {{ .Values.httpPort }} - targetPort: {{ .Values.httpPort }} + port: {{ .Values.httpServicePort }} + targetPort: {{ .Values.httpServicePort }} protocol: TCP - name: grpc - port: {{ .Values.grpcPort }} - targetPort: {{ .Values.grpcPort }} + port: {{ .Values.grpcServicePort }} + targetPort: {{ .Values.grpcServicePort }} protocol: TCP - name: mysql - port: {{ .Values.mysqlPort }} - targetPort: {{ .Values.mysqlPort }} + port: {{ .Values.mysqlServicePort }} + targetPort: {{ .Values.mysqlServicePort }} protocol: TCP - name: postgres - port: {{ .Values.postgresPort }} - targetPort: {{ .Values.postgresPort }} + port: {{ .Values.postgresServicePort }} + targetPort: {{ .Values.postgresServicePort }} protocol: TCP selector: {{- include "greptimedb-standalone.selectorLabels" . | nindent 4 }}