-
Notifications
You must be signed in to change notification settings - Fork 34
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
Disable imageDigest support in ztunnel controller #582
base: main
Are you sure you want to change the base?
Conversation
Currently, we have some pending work with the ztunnel images that are used as imageDigests. Because of this, when deploying Ambient profile using the OSSM operator, the ztunnel pod fails to come up. This PR temporarily disables this functionality until proper support is implemented. Alternatives: 1. Default Image: If no image details are provided in the ZTunnel CR, the operator will use the default image from the helm chart. 2. Explicitly specify image details: Following a recent fix in the ztunnel controller (PR#568), users can specify image details within the ztunnel CR itself in one of the following ways. 2.1: ztunnel.spec.values.ztunnel.image 2.2: ztunnel.spec.values.global.hub/tag Fixes: istio-ecosystem#581 Signed-off-by: Sridhar Gaddam <[email protected]>
81b9b67
to
1fc6b09
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #582 +/- ##
==========================================
- Coverage 75.11% 74.42% -0.70%
==========================================
Files 40 40
Lines 2504 2510 +6
==========================================
- Hits 1881 1868 -13
- Misses 534 554 +20
+ Partials 89 88 -1 ☔ View full report in Codecov by Sentry. |
It is important to note that this only impacts the Ambient profile, and not any usage of non-Ambient mode. |
Signed-off-by: Sridhar Gaddam <[email protected]>
@sridhargaddam: The following test failed, say
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. I understand the commands that are listed here. |
Currently, we have some pending work with the ztunnel images that are used as imageDigests. Because of this, when deploying Ambient profile using the OSSM operator, the ztunnel pod fails to come up. This PR temporarily disables this functionality until proper support is implemented.
Alternatives:
2.1: ztunnel.spec.values.ztunnel.image
2.2: ztunnel.spec.values.global.hub/tag
Note: This change impacts on the Ztunnel image when using the Ambient profile and will not have any affect on other images.
Fixes: #581