File tree Expand file tree Collapse file tree 4 files changed +28
-3
lines changed Expand file tree Collapse file tree 4 files changed +28
-3
lines changed Original file line number Diff line number Diff line change 11commands :
2+ install_helm :
3+ description : Install requests library
4+ steps :
5+ - run :
6+ command : |
7+ export DEBIAN_FRONTEND=noninteractive
8+ curl https://baltocdn.com/helm/signing.asc | sudo apt-key add -
9+ sudo apt-get install -y apt-transport-https
10+ echo "deb https://baltocdn.com/helm/stable/debian/ all main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list
11+ sudo apt-get update -qq
12+ sudo apt-get install -y helm
13+ name : Install Helm
214 install_python_requests :
315 description : Install requests library
416 steps :
@@ -556,6 +568,7 @@ jobs:
556568 - checkout
557569 - setup_remote_docker
558570 - install_python_requests
571+ - install_helm
559572 - run :
560573 command : |
561574 LATEST_TAG_WITH_V=`git describe --abbrev=0 --tags ${CIRCLE_SHA1}` &&
Original file line number Diff line number Diff line change 1+ description : Install requests library
2+ steps :
3+ - run :
4+ name : Install Helm
5+ command : |
6+ export DEBIAN_FRONTEND=noninteractive
7+ curl https://baltocdn.com/helm/signing.asc | sudo apt-key add -
8+ sudo apt-get install -y apt-transport-https
9+ echo "deb https://baltocdn.com/helm/stable/debian/ all main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list
10+ sudo apt-get update -qq
11+ sudo apt-get install -y helm
Original file line number Diff line number Diff line change @@ -365,6 +365,7 @@ publish:
365365 - checkout
366366 - setup_remote_docker
367367 - install_python_requests
368+ - install_helm
368369 - run :
369370 name : Publish
370371 command : |
Original file line number Diff line number Diff line change @@ -28,9 +28,9 @@ sed -i "s/IMAGE_TAG_OVERRIDE_WHEN_PUBLISHING/${NEW_TAG}/g" ./snyk-monitor/values
2828sed -i " s/IMAGE_TAG_OVERRIDE_WHEN_PUBLISHING/${NEW_TAG} /g" ./snyk-monitor-deployment.yaml
2929
3030echo building new helm release
31- ./ helm init --client-only
32- ./ helm package snyk-monitor --version ${NEW_TAG}
33- ./ helm repo index .
31+ helm init --client-only
32+ helm package snyk-monitor --version ${NEW_TAG}
33+ helm repo index .
3434
3535echo publishing to gh-pages
3636git add index.yaml
You can’t perform that action at this time.
0 commit comments