Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
### Removed
### Fixed
* Avoid set read_only conflict when graceful takeover
* Fix orchestrator startup crash in DualStack cluster

## [0.6.3] - 2023-05-22

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
{{- $_ := set $conf "RaftEnabled" true }}
{{- $_ := set $conf "RaftDataDir" "/var/lib/orchestrator" }}
{{- $_ := set $conf "RaftAdvertise" "{{ .Env.HOSTNAME }}-orc-svc" }}
{{- $_ := set $conf "RaftBind" "{{ .Env.HOSTNAME }}"}}
{{- $_ := set $conf "RaftBind" "{{ .Env.POD_IP }}"}}
{{- $_ := set $conf "HTTPAdvertise" "http://{{ .Env.HOSTNAME }}-orc-svc:80" }}
{{- if eq 1 $replicas -}}
{{- $_ := set $conf "RaftNodes" (list) }}
Expand Down
2 changes: 1 addition & 1 deletion deploy/charts/mysql-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ orchestrator:
# - SQLite3DataFile /var/lib/orchestrator/orc.db
# - RaftEnabled true
# - RaftDataDir /var/lib/orchestrator
# - RaftBind $HOSTNAME
# - RaftBind $POD_IP
# - RaftNodes The statefullset members
config:
Debug: false
Expand Down