Signed-off-by: Mariusz Sabath <[email protected]> Signed-off-by: Marco Franssen <[email protected]> Signed-off-by: kfox1111 <[email protected]> Co-authored-by: Marco Franssen <[email protected]> Co-authored-by: kfox1111 <[email protected]>
14 lines
330 B
Bash
Executable File
14 lines
330 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -x
|
|
|
|
SCRIPT=$(readlink -f "$0")
|
|
SCRIPTPATH=$(dirname "$SCRIPT")
|
|
|
|
helm install \
|
|
--namespace spire-server \
|
|
--values "${SCRIPTPATH}/../../../examples/production/values.yaml" \
|
|
--values "${SCRIPTPATH}/../../../examples/tornjak/values.yaml" \
|
|
spire charts/spire --wait
|
|
helm test spire -n spire-server
|