-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Fix Gateway helm chart for helm 3 #22295
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
Conversation
Helm 3 threw an error that `$spec.sds` is not a function. Removing the parentheses led to the next problem: the and evaluates eager so `spec.sds.enabled` resulted in a `nil` exception. By nesting the if, the problem is resolved
😊 Welcome @alexnederlof! This is either your first contribution to the Istio istio repo, or it's been You can learn more about the Istio working groups, code of conduct, and contributing guidelines Thanks for contributing! Courtesy of your friendly welcome wagon. |
Hi @alexnederlof. Thanks for your PR. I'm waiting for a istio member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
BTW am I merging this into the right branch here? |
Normally no, we go to master and then cherrypick: https://github.com/istio/istio/wiki/Istio-Release-1.5#how-do-i-get-my-changes-into-the-release. In this case, the code has changed on master, so going directly to release-1.5, as you have done, is correct. Thanks! |
/cherry-pick release-1.4 |
@ericvn: new pull request created: #23077 In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Helm 3 threw an error that
$spec.sds
is not a function. Removing the parentheses led to the next problem: theand
evaluates all expressions sospec.sds.enabled
resulted in anil
exception.By nesting the if, the problem is resolved
Tested with helm v3.1.2. Encountered the problem while trying to install Istio for Knative, which wants you to run this command:
[ ] Configuration Infrastructure
[ ] Docs
[x] Installation
[ ] Networking
[ ] Performance and Scalability
[ ] Policies and Telemetry
[ ] Security
[ ] Test and Release
[ ] User Experience
[ ] Developer Infrastructure