This patch makes all the database settings configurable. fixes: https://github.com/spiffe/helm-charts/issues/37 --------- Signed-off-by: Kevin Fox <[email protected]> Signed-off-by: kfox1111 <[email protected]> Co-authored-by: Faisal Memon <[email protected]> Co-authored-by: Marco Franssen <[email protected]>
19 lines
392 B
Bash
Executable File
19 lines
392 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -x
|
|
|
|
SCRIPT="$(readlink -f "$0")"
|
|
SCRIPTPATH="$(dirname "${SCRIPT}")"
|
|
scenario="${scenario:-$(basename "${SCRIPTPATH}")}"
|
|
|
|
# shellcheck source=/dev/null
|
|
source "${SCRIPTPATH}/../common.sh"
|
|
|
|
print_helm_releases
|
|
print_spire_workload_status spire-server spire-system
|
|
|
|
if [[ "$1" -ne 0 ]]; then
|
|
get_namespace_details spire-server
|
|
get_namespace_details spire-system
|
|
fi
|