Skip to content

Commit

Permalink
Merge pull request #432 from cockroachdb/cockroach-start-args
Browse files Browse the repository at this point in the history
[CRDB-44988] bugfix: fix cockroach start arguments
  • Loading branch information
pritesh-lahoti authored Nov 29, 2024
2 parents b4459d8 + d72bcf6 commit 0cef9be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cockroachdb/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
apiVersion: v1
name: cockroachdb
home: https://www.cockroachlabs.com
version: 14.0.6
version: 14.0.7
appVersion: 24.2.5
description: CockroachDB is a scalable, survivable, strongly-consistent SQL database.
icon: https://raw.githubusercontent.com/cockroachdb/cockroach/master/docs/media/cockroach_db.png
Expand Down
6 changes: 3 additions & 3 deletions cockroachdb/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ spec:
{{- else }}
--http-port={{ index .Values.service.ports.http.port | int64 }}
{{- end }}
{{ if .Values.conf.port }}
{{- if .Values.conf.port }}
--port={{ .Values.conf.port | int64 }}
{{- else }}
--port={{ .Values.service.ports.grpc.internal.port | int64 }}
Expand Down Expand Up @@ -256,7 +256,7 @@ spec:
{{- end }}
ports:
- name: grpc
{{ if .Values.conf.port }}
{{- if .Values.conf.port }}
containerPort: {{ .Values.conf.port | int64 }}
{{- else }}
containerPort: {{ .Values.service.ports.grpc.internal.port | int64 }}
Expand Down Expand Up @@ -349,7 +349,7 @@ spec:
{{- else }}
emptyDir: {}
{{- end }}
{{ with .Values.statefulset.volumes }}
{{- with .Values.statefulset.volumes }}
{{ toYaml . | nindent 8 }}
{{- end }}
{{- if .Values.tls.enabled }}
Expand Down

0 comments on commit 0cef9be

Please sign in to comment.