diff options
author | Patrick Spek <p.spek@tyil.nl> | 2023-04-05 13:51:43 +0200 |
---|---|---|
committer | Patrick Spek <p.spek@tyil.nl> | 2023-04-05 13:51:43 +0200 |
commit | 09191e3eb172759619aefab5373abccbc5513200 (patch) | |
tree | 2c60e886a82f7336d3c483ce0f1ae880bb04090f | |
parent | 2af260087f7c007ee0ec5aeafe1e9ddfc8e4e711 (diff) | |
download | k3s-master-09191e3eb172759619aefab5373abccbc5513200.tar.gz k3s-master-09191e3eb172759619aefab5373abccbc5513200.tar.bz2 |
Redirect output of helm to /dev/null
-rw-r--r-- | playbook.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/playbook.bash b/playbook.bash index f8c8d36..1f1b272 100644 --- a/playbook.bash +++ b/playbook.bash @@ -86,7 +86,7 @@ playbook_sync() { helm_cmd+=("$(config "$BASHTARD_PLAYBOOK.helm.apps.$app.chart")") notice "$BASHTARD_PLAYBOOK/helm/$app" "> ${helm_cmd[*]}" - ${helm_cmd[@]} + ${helm_cmd[@]} > /dev/null unset helm_cmd unset values |