Skip to content

Commit 9177600

Browse files
authored
fix(rel): update helm install script (#741)
Update Helm install script for CI testing pipeline. ### Test plan CI <!-- As part of SOC2/GN-104 and SOC2/GN-105 requirements, all pull requests are REQUIRED to provide a "test plan". A test plan is a loose explanation of what you have done or implemented to test this, as outlined in our Testing principles and guidelines: https://docs.sourcegraph.com/dev/background-information/testing_principles Write your test plan here after the "Test plan" header. -->
1 parent 428e78f commit 9177600

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

scripts/ci/install-helm-env.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@
33
set -euf -o pipefail
44

55
### Install Helm
6-
curl https://baltocdn.com/helm/signing.asc | sudo apt-key add -
7-
sudo apt-get update
8-
sudo apt-get install apt-transport-https --yes
9-
echo "deb https://baltocdn.com/helm/stable/debian/ all main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list
6+
sudo apt-get install curl gpg apt-transport-https --yes
7+
curl -fsSL https://packages.buildkite.com/helm-linux/helm-debian/gpgkey | gpg --dearmor | sudo tee /usr/share/keyrings/helm.gpg > /dev/null
8+
echo "deb [signed-by=/usr/share/keyrings/helm.gpg] https://packages.buildkite.com/helm-linux/helm-debian/any/ any main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list
109
sudo apt-get update
1110
sudo apt-get install helm

0 commit comments

Comments
 (0)