-
Notifications
You must be signed in to change notification settings - Fork 2.1k
buildbox: add new helm unittest plugin fork #18945
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -177,6 +177,14 @@ RUN go install github.com/daixiang0/gci@v0.8.2 | |
| RUN (mkdir -p helm-tarball && curl -L https://get.helm.sh/helm-v3.5.2-$(go env GOOS)-$(go env GOARCH).tar.gz | tar -C helm-tarball -xz && \ | ||
| cp helm-tarball/$(go env GOOS)-$(go env GOARCH)/helm /bin/ && \ | ||
| rm -r helm-tarball*) | ||
|
|
||
| # TODO(hugoShaka): remove this backward compatible hack with teleportv13 buildbox | ||
| RUN helm plugin install https://github.com/quintush/helm-unittest && \ | ||
|
Collaborator
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. Shouldn't we set
Contributor
Author
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. I tried to do this, but helm did not respect the variable during installation 🙄 this is why the plugin is copied somewhere else, then deleted with
|
||
| mkdir -p /home/ci/.local/share/helm && \ | ||
| cp -r /root/.local/share/helm/plugins /home/ci/.local/share/helm/plugins-new && \ | ||
| chown -R ci /home/ci/.local/share/helm && \ | ||
| helm plugin uninstall unittest && \ | ||
| HELM_PLUGINS=/home/ci/.local/share/helm/plugins-new helm plugin list | ||
| RUN helm plugin install https://github.com/vbehar/helm3-unittest && \ | ||
| mkdir -p /home/ci/.local/share/helm && \ | ||
| cp -r /root/.local/share/helm/plugins /home/ci/.local/share/helm && \ | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.