Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch Maria IP to internal #458

Merged
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ STORAGE_CLASS=local-storage
MARIADB_IMAGE=registry.redhat.io/rhosp-dev-preview/openstack-mariadb-rhel9:18.0
endif::[]
# Replace with your environment's MariaDB Galera cluster VIP and backend IPs:
SOURCE_MARIADB_IP=192.168.122.99
SOURCE_MARIADB_IP=172.17.0.2
declare -A SOURCE_GALERA_MEMBERS
SOURCE_GALERA_MEMBERS=(
["standalone.localdomain"]=192.168.122.100
["standalone.localdomain"]=172.17.0.100
# ...
)
SOURCE_DB_ROOT_PASSWORD=$(cat ~/tripleo-standalone-passwords.yaml | grep ' MysqlRootPassword:' | awk -F ': ' '{ print $2; }')
Expand Down
2 changes: 1 addition & 1 deletion tests/vars.sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ oc_header: |
eval $(crc oc-env)

# Source MariaDB Galera cluster VIP for DB exports.
source_mariadb_ip: 192.168.122.99 #CUSTOMIZE_THIS
source_mariadb_ip: 172.17.0.2 #CUSTOMIZE_THIS

# Source OS diff config ip for Tripleo
source_os_diff_config_ip: 192.168.122.100
Expand Down
Loading