offline-kubernetes-install/scripts/0-config.sh

12 lines
267 B
Bash
Raw Normal View History

2023-04-27 11:39:30 +08:00
#!/bin/bash
2023-09-12 17:20:40 +08:00
set -euo pipefail
2023-04-27 11:39:30 +08:00
2023-09-12 17:20:40 +08:00
source .env
2023-04-27 11:39:30 +08:00
2023-09-12 17:20:40 +08:00
sed -e "s/__MASTER1__/${MASTER1}/g" \
-e "s/__MASTER2__/${MASTER2}/g" \
-e "s/__MASTER3__/${MASTER3}/g" \
-e "s/__VIP__/${VIP}/g" \
-i keepalived/*.conf
sed -e "s/__API_SERVER__/${VIP}/g" -i 2-create_k8s.sh