28 lines
974 B
Bash
28 lines
974 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -eou pipefail
|
||
|
|
||
|
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}"
|
||
|
}
|
||
|
|
||
|
${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"
|