-
Notifications
You must be signed in to change notification settings - Fork 102
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
Configure httpRedirect on istio gateway in helm #1948
Configure httpRedirect on istio gateway in helm #1948
Conversation
The committers listed above are authorized under a signed CLA. |
Welcome @AyushSawant18588! It looks like this is your first PR to knative/operator 🎉 |
Hi @AyushSawant18588. Thanks for your PR. I'm waiting for a knative 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-sigs/prow repository. |
891f736
to
25c678e
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1948 +/- ##
=======================================
Coverage 63.88% 63.88%
=======================================
Files 54 54
Lines 2622 2622
=======================================
Hits 1675 1675
Misses 830 830
Partials 117 117 ☔ View full report in Codecov by Sentry. |
@AyushSawant18588 could you join the knative org to pass the EasyCLA checking? |
@@ -4875,6 +4875,13 @@ spec: | |||
type: string | |||
type: object | |||
tls: |
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.
I am wondering whether you also need to change https://github.com/knative/operator/blob/main/config/charts/knative-operator/values.yaml
for the default values of these new fields.
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.
These are changes in Knative Serving CRDs so I do not think there will be any change in values.yaml of knative-operator helm chart.
These changes will allow for httpRedirect configuration while creating Knative Serving Custom Resource after installing knative-operator through this helm chart. What do you think?
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.
I thought you were about to configure the values for the fields added in this PR.
If they are not editable in values.yaml, they will always be the same values as defined in the CRD. Still not configurable.
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.
This PR introduces changes to enable applying the httpRedirect setting when creating Knative Serving after installing the Knative Operator using the Helm chart. Since this setting is for Knative Serving, this setting is not to be configurable through the values.yaml file of the Knative Operator Helm chart .
/test all |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: AyushSawant18588, houshengbo 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 |
Fixes #
Update knative-serving CRD to allow configuring of HTTP->HTTPS redirection on Istio Gateway through helm chart. Currently through knative operator helm chart HTTP->HTTPS redirection on Istio Gateway is not configurable. This was done only in Knative operator manifest file in this PR: #1912
Issue: #1944