-
Notifications
You must be signed in to change notification settings - Fork 3
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
Support TLS environment variables #12
Conversation
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.
install.sh needs to be updated:
PLUGIN_VERSION=${PLUGIN_VERSION:-"0.6.0"}
// // DefaultTLSVerify is the default value for HELM_TLS_VERIFY | ||
// DefaultTLSVerify = false | ||
//) | ||
|
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.
If not used, please help to remove commented code, thx!
49d29a1
to
cc13937
Compare
@EmilyEmily I made a new install-binary.sh, please review. |
armv5*) ARCH="armv5";; | ||
armv6*) ARCH="armv6";; | ||
armv7*) ARCH="armv7";; | ||
aarch64) ARCH="arm64";; |
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.
Can these be in the else branch? Because we only support two ARCH: amd64 and i386.
install-binary.sh
Outdated
msys*) OS='windows';; | ||
# Minimalist GNU for Windows | ||
mingw*) OS='windows';; | ||
darwin) OS='darwin';; |
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.
additional line
No description provided.