Skip to content

Commit

Permalink
fix: fix meta store backend in standalone mode
Browse files Browse the repository at this point in the history
Signed-off-by: arkbriar <arkbriar@gmail.com>
  • Loading branch information
arkbriar committed Oct 23, 2023
1 parent 470c150 commit f3c19b9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/risingwave/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ 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.1.25
version: 0.1.26

# 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
Expand Down
8 changes: 8 additions & 0 deletions charts/risingwave/templates/standalone/standalone-sts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,17 @@ spec:
--dashboard-host 0.0.0.0:{{ .Values.ports.meta.dashboard }}
--prometheus-host 0.0.0.0:{{ .Values.ports.meta.metrics }}
--backend $(RW_BACKEND)
--etcd-endpoints $(RW_ETCD_ENDPOINTS)
--state-store $(RW_STATE_STORE)
--data-directory $(RW_DATA_DIRECTORY)
--config-path /risingwave/config/risingwave.toml
{{- if .Values.tags.etcd }}
{{- if and (not .Values.etcd.auth.rbac.allowNoneAuthentication) .Values.etcd.auth.rbac.create }}
--etcd-auth
--etcd-username $(RW_ETCD_USERNAME)
--etcd-password $(RW_ETCD_PASSWORD)
{{- end }}
{{- end }}
- >-
--compute-opts=--config-path /risingwave/config/risingwave.toml
--listen-addr 127.0.0.1:{{ .Values.ports.compute.svc }}
Expand Down

0 comments on commit f3c19b9

Please sign in to comment.