mirror of
https://github.com/FairwindsOps/polaris.git
synced 2026-05-12 04:06:44 +00:00
16 lines
353 B
Bash
Executable File
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
|