-
Notifications
You must be signed in to change notification settings - Fork 21
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 local cert manager #139
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.
Left a comment about which make target depends on install-cert-manager
. Other than that, verification steps work, including make run
alternatively to make deploy
.
Makefile
Outdated
@@ -182,7 +185,7 @@ docker-push: ## Push docker image with the manager. | |||
|
|||
##@ Deployment | |||
|
|||
install: manifests kustomize install-authorino ## Install CRDs into the K8s cluster specified in ~/.kube/config. | |||
install: manifests kustomize install-cert-manager install-authorino ## Install CRDs into the K8s cluster specified in ~/.kube/config. |
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.
Technically, cert-manager is a dependency for the Authorino webhook, which is deployed by install-authorino
. I'd move it there, instead of make install
.
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.
Sure I am not going to argue with that.
Add the installation of the cert manager for the tools used during dev work.
61fa39d
to
a133c2b
Compare
Codecov Report
@@ Coverage Diff @@
## main #139 +/- ##
==========================================
+ Coverage 63.11% 64.48% +1.36%
==========================================
Files 1 1
Lines 732 732
==========================================
+ Hits 462 472 +10
+ Misses 220 211 -9
+ Partials 50 49 -1
Flags with carried forward coverage won't be shown. Click here to find out more. see 1 file with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
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.
Thank you!
Add the installation of the cert manager for the tools used during dev work.
Validation
Closes: Kuadrant/kuadrant-operator#257