Merge argoless branch into master #30

Merged
stefan merged 47 commits from argoless into master 2021-01-12 15:03:36 +00:00
1 changed files with 3 additions and 0 deletions
Showing only changes of commit b4519fe055 - Show all commits

View File

@ -10,6 +10,9 @@ API_VERSIONS="-a monitoring.coreos.com/v1"
DEPLOY_DIR=$( dirname $( realpath $0 ))
which yq || { echo "yq not found!"; exit 1; }
which helm || { echo "helm not found!"; exit 1; }
helm_version=$(helm version --short)
echo $helm_version | grep -qe "^v3.[3-9]" || { echo "Helm version >= 3.3 required!"; exit 1; }
TMPDIR=$(mktemp -d kubezero.XXX)