-
Notifications
You must be signed in to change notification settings - Fork 820
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
Bug: make install
uses local helm and jq
#2672
Bug: make install
uses local helm and jq
#2672
Conversation
In a difference between " and ', meant that the `make install` command that would check the helm install and uninstall if necessary was actually using the local installations of `helm` and `jq` rather than the ones in the Docker container. This didn't fail in most places, as Cloud Build, and many of our dev machines have these installed already, and the command is set to be ignored if it fails for whatever reason (as a safety measure). I only noticed the output on screen when helping a teammate debug some other issues.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gotta love quotes in shell.
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: markmandel, roberthbailey The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
What type of PR is this?
/kind bug
What this PR does / Why we need it:
In a difference between " and ', meant that the
make install
command that would check the helm install and uninstall if necessary was actually using the local installations ofhelm
andjq
rather than the ones in the Docker container.This didn't fail in most places, as Cloud Build, and many of our dev machines have these installed already, and the command is set to be ignored if it fails for whatever reason (as a safety measure).
I only noticed the output on screen when helping a teammate debug some other issues.
Which issue(s) this PR fixes:
N/A
Special notes for your reviewer:
N/A