Skip to content

Commit

Permalink
chore: change standalone port values name
Browse files Browse the repository at this point in the history
  • Loading branch information
daviderli614 committed Oct 21, 2023
1 parent d75cb4b commit 4502380
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions charts/greptimedb-standalone/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit 4502380

Please sign in to comment.