-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use new ingressClassName only by default (#2268)
- By default, use only `ingressClassName` for ingress class name and corresponding field in cert-manager - Only use old 'kubernetes.io/ingress.class' if ingress.useOldClassAnnotation is set - Allow for using old annotation only for backwards compatibility, eg. for GCP - Closes #2267 and #1570 --------- Co-authored-by: Ilya Kreymer <[email protected]>
- Loading branch information
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -446,6 +446,12 @@ ingress: | |
#host: "" | ||
cert_email: "[email protected]" | ||
tls: false | ||
|
||
# If set, will use the old 'kubernetes.io/ingress.class' annotation instead of the new ingressClassName | ||
# also uses old http01.ingress.class in cert-manager instead of http01.ingress.ingressClassName | ||
# provided for backwards compatibility | ||
useOldClassAnnotation: false | ||
|
||
# Optional: Uncomment to use your own cluster-issuer instead of default ACME https validation | ||
# custom_cluster_issuer: custom_cluster_issuer-name | ||
|
||
|