This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "Checking tool versions..." | |
echo -n "bash: " | |
bash --version | head -n 1 | |
echo -n "coreutils (ls): " | |
ls --version | head -n 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# ############################################################################################################ | |
# | |
# This script prepares airgapped nodes deployed with TF stack located within this folder. | |
# | |
# See README.md for more details. | |
# | |
# Usage: ./airgap-prepare.sh | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
PRE-REQUISITES: | |
======================= | |
1. Helm is installed. | |
2. helm repo add postgres-operator https://opensource.zalando.com/postgres-operator/charts/postgres-operator/ | |
3. helm repo add msrofficial https://registry.mirantis.com/charts/msr/msr | |
HOW TO RUN: | |
======================= | |
Change the `host` and `password` variables to that of your MSR instance. |