mirror of
https://github.com/FairwindsOps/polaris.git
synced 2026-05-15 13:47:41 +00:00
18 lines
465 B
Bash
Executable File
18 lines
465 B
Bash
Executable File
# /bin/bash
|
|
|
|
set -eo pipefail
|
|
|
|
helm template $CHARTS_DIR/stable/polaris/ \
|
|
--name polaris --namespace polaris \
|
|
--set templateOnly=true \
|
|
--set config="$(cat ./examples/config.yaml)" \
|
|
> deploy/dashboard.yaml
|
|
|
|
helm template $CHARTS_DIR/stable/polaris/ \
|
|
--name polaris --namespace polaris \
|
|
--set templateOnly=true \
|
|
--set webhook.enable=true \
|
|
--set dashboard.enable=false \
|
|
--set config="$(cat ./examples/config.yaml)" \
|
|
> deploy/webhook.yaml
|