
* Refactor chart for 1.0, add tests, update TF * Fix typo in helper comment * Add NOTES for post install instructions * Fix typo in NOTES * Fix replication port for enterprise * Change updateStrategy to OnDelete * Add icon * Remove cluster address from config * Update README, add contributing doc * Update README * Change HA replicas to 3
130 lines
3.9 KiB
Bash
130 lines
3.9 KiB
Bash
# name_prefix returns the prefix of the resources within Kubernetes.
|
|
name_prefix() {
|
|
printf "vault"
|
|
}
|
|
|
|
# chart_dir returns the directory for the chart
|
|
chart_dir() {
|
|
echo ${BATS_TEST_DIRNAME}/../..
|
|
}
|
|
|
|
# helm_install installs the vault chart. This will source overridable
|
|
# values from the "values.yaml" file in this directory. This can be set
|
|
# by CI or other environments to do test-specific overrides. Note that its
|
|
# easily possible to break tests this way so be careful.
|
|
helm_install() {
|
|
local values="${BATS_TEST_DIRNAME}/values.yaml"
|
|
if [ ! -f "${values}" ]; then
|
|
touch $values
|
|
fi
|
|
|
|
helm install -f ${values} \
|
|
--name vault \
|
|
${BATS_TEST_DIRNAME}/../..
|
|
}
|
|
|
|
# helm_install_ha installs the vault chart using HA mode. This will source
|
|
# overridable values from the "values.yaml" file in this directory. This can be
|
|
# set by CI or other environments to do test-specific overrides. Note that its
|
|
# easily possible to break tests this way so be careful.
|
|
helm_install_ha() {
|
|
local values="${BATS_TEST_DIRNAME}/values.yaml"
|
|
if [ ! -f "${values}" ]; then
|
|
touch $values
|
|
fi
|
|
|
|
helm install -f ${values} \
|
|
--name vault \
|
|
--set 'server.enabled=false' \
|
|
--set 'serverHA.enabled=true' \
|
|
${BATS_TEST_DIRNAME}/../..
|
|
}
|
|
|
|
# wait for consul to be running
|
|
wait_for_running_consul() {
|
|
check() {
|
|
# This requests the pod and checks whether the status is running
|
|
# and the ready state is true. If so, it outputs the name. Otherwise
|
|
# it outputs empty. Therefore, to check for success, check for nonzero
|
|
# string length.
|
|
kubectl get pods -l component=client -o json | \
|
|
jq -r '.items[0] | select(
|
|
.status.phase == "Running" and
|
|
([ .status.conditions[] | select(.type == "Ready" and .status == "True") ] | length) == 1
|
|
) | .metadata.name'
|
|
}
|
|
|
|
for i in $(seq 60); do
|
|
if [ -n "$(check ${POD_NAME})" ]; then
|
|
echo "consul clients are ready."
|
|
return
|
|
fi
|
|
|
|
echo "Waiting for ${POD_NAME} to be ready..."
|
|
sleep 2
|
|
done
|
|
|
|
echo "consul clients never became ready."
|
|
exit 1
|
|
}
|
|
|
|
# wait for a pod to be ready
|
|
wait_for_running() {
|
|
POD_NAME=$1
|
|
|
|
check() {
|
|
# This requests the pod and checks whether the status is running
|
|
# and the ready state is true. If so, it outputs the name. Otherwise
|
|
# it outputs empty. Therefore, to check for success, check for nonzero
|
|
# string length.
|
|
kubectl get pods $1 -o json | \
|
|
jq -r 'select(
|
|
.status.phase == "Running" and
|
|
([ .status.conditions[] | select(.type == "Ready" and .status == "False") ] | length) == 1
|
|
) | .metadata.namespace + "/" + .metadata.name'
|
|
}
|
|
|
|
for i in $(seq 60); do
|
|
if [ -n "$(check ${POD_NAME})" ]; then
|
|
echo "${POD_NAME} is ready."
|
|
sleep 2
|
|
return
|
|
fi
|
|
|
|
echo "Waiting for ${POD_NAME} to be ready..."
|
|
sleep 2
|
|
done
|
|
|
|
echo "${POD_NAME} never became ready."
|
|
exit 1
|
|
}
|
|
|
|
wait_for_ready() {
|
|
POD_NAME=$1
|
|
|
|
check() {
|
|
# This requests the pod and checks whether the status is running
|
|
# and the ready state is true. If so, it outputs the name. Otherwise
|
|
# it outputs empty. Therefore, to check for success, check for nonzero
|
|
# string length.
|
|
kubectl get pods $1 -o json | \
|
|
jq -r 'select(
|
|
.status.phase == "Running" and
|
|
([ .status.conditions[] | select(.type == "Ready" and .status == "True") ] | length) == 1
|
|
) | .metadata.namespace + "/" + .metadata.name'
|
|
}
|
|
|
|
for i in $(seq 60); do
|
|
if [ -n "$(check ${POD_NAME})" ]; then
|
|
echo "${POD_NAME} is ready."
|
|
sleep 2
|
|
return
|
|
fi
|
|
|
|
echo "Waiting for ${POD_NAME} to be ready..."
|
|
sleep 2
|
|
done
|
|
|
|
echo "${POD_NAME} never became ready."
|
|
exit 1
|
|
}
|