Files
polaris/scripts/generate-deployment-files.sh
2020-06-23 08:50:28 -04:00

16 lines
353 B
Bash
Executable File

# /bin/bash
set -eo pipefail
helm template polaris $CHARTS_DIR/stable/polaris/ \
--namespace polaris \
--set templateOnly=true \
> deploy/dashboard.yaml
helm template polaris $CHARTS_DIR/stable/polaris/ \
--namespace polaris \
--set templateOnly=true \
--set webhook.enable=true \
--set dashboard.enable=false \
> deploy/webhook.yaml