diff --git a/charts/databend-query/Chart.yaml b/charts/databend-query/Chart.yaml index 3f82482..60b6c39 100644 --- a/charts/databend-query/Chart.yaml +++ b/charts/databend-query/Chart.yaml @@ -25,13 +25,13 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.7.2 +version: 0.7.3 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "v1.2.62-nightly" +appVersion: "v1.2.80-nightly" dependencies: - name: common diff --git a/charts/databend-query/templates/statefulset.yaml b/charts/databend-query/templates/statefulset.yaml index 7c852b5..f2a4e0f 100644 --- a/charts/databend-query/templates/statefulset.yaml +++ b/charts/databend-query/templates/statefulset.yaml @@ -43,18 +43,10 @@ spec: image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.image.pullPolicy }} ports: - - name: metric - containerPort: 7070 - - name: admin - containerPort: 8080 - - name: flight - containerPort: 9090 - - name: mysql - containerPort: 3307 - - name: clickhouse - containerPort: 8124 - - name: http - containerPort: 8000 + {{- range $key, $val := .Values.service.ports }} + - name: {{ $key }} + containerPort: {{ $val}} + {{- end }} livenessProbe: httpGet: path: /v1/health