-
-
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.
ingress: change flag for using old annotation to 'useOldClassAnnotation'
ensure 'kubernetes.io/ingress.class' and 'ingressClassName' are mutually exclusive, defaulting to latter unless 'useOldClassAnnotation' is set
- Loading branch information
Showing
2 changed files
with
17 additions
and
6 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 |
---|---|---|
|
@@ -447,11 +447,11 @@ ingress: | |
cert_email: "[email protected]" | ||
tls: false | ||
|
||
# This is related to the issues webrecorder/browsertrix#1570 and cert-manager/cert-manager#6184 | ||
# This relates to the new `http01.ingress.ingressClassName` solver spec attribute which got introduced in the recent v1.15 cert-manager version. | ||
# Cert-manager v1.15 does not want the fields ingressClassName and class be set at the same time. | ||
useOldClassField: 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 | ||
|
||
|