- Notifications
You must be signed in to change notification settings - Fork1.1k
ci: workaround for get.helm.sh outage#20552
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -204,9 +204,17 @@ jobs: | ||
| # Needed for helm chart linting | ||
| - name: Install helm | ||
| # uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 # v4.3.1 | ||
| # with: | ||
| # version: v3.9.2 | ||
| # The below is taken from https://helm.sh/docs/intro/install/#from-apt-debianubuntu | ||
| run: | | ||
| set -euo pipefail | ||
| sudo apt-get install curl gpg apt-transport-https --yes | ||
| curl -fsSL https://packages.buildkite.com/helm-linux/helm-debian/gpgkey | gpg --dearmor | sudo tee /usr/share/keyrings/helm.gpg > /dev/null | ||
| 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 | ||
| sudo apt-get update | ||
| sudo apt-get install helm | ||
Contributor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Does this pin to 3.9.2 somehow? MemberAuthor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. No, this is a temporary workaround while get.helm.sh is experiencing issues. Opened#20557 to revert this workaround. | ||
| - name: make lint | ||
| run: | | ||
Uh oh!
There was an error while loading.Please reload this page.