-
My apologies I do not seem to have the permissions to re open the discussion in #4855 We can answer this here or on the old thread my comment/question is the same. Two things:
These TSL errors still persist in the same form. Are there any alternative ideas? cert-manager-webhook logs: I have yet to uncomment out the skaffold line listed above its the only thing i have not tried. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Could you please create an issue with a minimal reproducible sample, or share the repository of your project? It seems like something required might not have been uncommented properly. Starting from release v4.7.0, when users scaffold a webhook, the tool automatically uncomments all the necessary sections to simplify the setup. You might want to try using the latest release to see if the issue persists. In this discussion, I tried to highlight all the areas that should be verified. However, it’s easy to miss a step—which is exactly why this process was streamlined in v4.7.0. The webhook implementation is well covered by our end-to-end tests, so this most likely indicates a mismatch or a configuration issue—possibly related to the webhook certificates. |
Beta Was this translation helpful? Give feedback.
-
Closing this one as sorted out, since you could verify that the issue was a result of customisations made that do not match the expected configuration. Thank you. |
Beta Was this translation helpful? Give feedback.
I was able to solve this issue eventually. I don't know if it requires a ticket but when the webhook files are created/scaffolded using the kubebuilder commands the webhook service was created with the incorrect label selector.
note the different labeled
app.kubernetes.io/name: operator vs app.kubernetes.io/name: my-operator
. I have changed the names but essentially my p…