mirror of
https://github.com/siderolabs/talos.git
synced 2025-08-26 00:51:11 +02:00
This PR ensures that we have 3 master nodes. Signed-off-by: Andrew Rynhard <andrew@andrewrynhard.com>
43 lines
1.2 KiB
Bash
Executable File
43 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eou pipefail
|
|
|
|
TMP="$(mktemp -d)"
|
|
OSCTL="${PWD}/build/osctl-linux-amd64"
|
|
|
|
export TALOSCONFIG="${TMP}/talosconfig"
|
|
export KUBECONFIG="${TMP}/kubeconfig"
|
|
|
|
cleanup() {
|
|
${OSCTL} cluster destroy --name integration
|
|
rm -rf ${TMP}
|
|
}
|
|
|
|
run() {
|
|
docker run \
|
|
--rm \
|
|
--interactive \
|
|
--net=integration \
|
|
--entrypoint=bash \
|
|
--mount type=bind,source=${TMP},target=${TMP} \
|
|
--mount type=bind,source=${PWD}/hack/dev/manifests,target=/manifests \
|
|
-v ${OSCTL}:/bin/osctl:ro \
|
|
-e KUBECONFIG=${KUBECONFIG} \
|
|
-e TALOSCONFIG=${TALOSCONFIG} \
|
|
k8s.gcr.io/hyperkube:${KUBERNETES_VERSION} -c "${1}"
|
|
}
|
|
|
|
trap cleanup EXIT
|
|
|
|
${OSCTL} cluster create --name integration
|
|
${OSCTL} config target 10.5.0.2
|
|
|
|
run "until osctl kubeconfig > ${KUBECONFIG}; do cat ${KUBECONFIG}; sleep 5; done"
|
|
run "until kubectl get nodes -o json | jq '.items | length' | grep 4 >/dev/null; do kubectl get nodes -o wide; sleep 5; done"
|
|
run "kubectl apply -f /manifests/psp.yaml -f /manifests/flannel.yaml"
|
|
run "kubectl wait --for=condition=ready=true --all nodes"
|
|
# Verify that we have an HA controlplane
|
|
run "kubectl get nodes -l node-role.kubernetes.io/master='' -o json | jq '.items | length' | grep 3 >/dev/null"
|
|
|
|
exit 0
|