Remove deprecated field from cert
This commit is contained in:
parent
d5c605a8fb
commit
e310281e71
3 changed files with 2 additions and 5 deletions
|
@ -73,8 +73,7 @@
|
|||
(yaml/load-as-edn "ingress/certificate.yaml")
|
||||
(assoc-in [:metadata :name] cert-name)
|
||||
(assoc-in [:metadata :labels :app.kubernetes.part-of] app-name)
|
||||
(assoc-in [:spec :secretName] cert-name)
|
||||
(assoc-in [:spec :commonName] (first fqdns))
|
||||
(assoc-in [:spec :secretName] cert-name)
|
||||
(assoc-in [:spec :dnsNames] fqdns)
|
||||
(assoc-in [:spec :issuerRef :name] letsencrypt-issuer))))
|
||||
|
|
@ -7,7 +7,6 @@ metadata:
|
|||
namespace: default
|
||||
spec:
|
||||
secretName: c4k-common-cert
|
||||
commonName: FQDN
|
||||
duration: 2160h # 90d
|
||||
renewBefore: 360h # 15d
|
||||
dnsNames:
|
||||
|
|
|
@ -108,8 +108,7 @@
|
|||
:labels {:app.kubernetes.part-of "c4k-common-app"},
|
||||
},
|
||||
:spec
|
||||
{:secretName "test-io-cert",
|
||||
:commonName "test.de",
|
||||
{:secretName "test-io-cert",
|
||||
:duration "2160h",
|
||||
:renewBefore "360h",
|
||||
:dnsNames ["test.de" "test.org" "www.test.de" "www.test.org"],
|
||||
|
|
Loading…
Reference in a new issue