我正在使用cert-manager-v0.10.0
从其掌舵图安装
我正在使用类似kong的入口控制器来管理入口操作。
所以我创建了一个ClusterIssuer
资源,以便可以通过 kong-ingress 控制器从 Ingress 资源中联系它。
是这样的 ClusterIssuer
:
apiVersion: certmanager.k8s.io/v1alpha1
kind: ClusterIssuer
metadata:
name: letsencrypt-prod
spec:
acme:
# The ACME server URL
server: https://acme-v02.api.letsencrypt.org/directory
# Email address used for ACME registration
email: username@mydomain.org
# Name of a secret used to store the ACME account private key
privateKeySecretRef:
name: letsencrypt-prod
# Enable the HTTP-01 challenge provider
solvers:
- http01:
ingress:
class: kong
我正在使用的入口资源是这个。
您可以在这里看到,我将它指向之前创建的 ClusterIssuer,并且我将它指向 kong 作为入口控制器,根据kubernetes.io/ingress.class: "kong"
其中包含的注释:
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
annotations:
# add an annotation indicating the issuer to use.
certmanager.k8s.io/cluster-issuer: letsencrypt-prod # letsencrypt-staging
kubernetes.io/ingress.class: "kong"
plugins.konghq.com: swaggerapi-customer-production-basic-auth, swaggerapi-customer-production-acl
name: production-customer-ingress-app
# namespace: default
spec:
rules:
- host: appprod.mydomain.org
http:
paths:
- backend:
serviceName: customer-production-app
servicePort: 80
path: /comcustomerpr
tls: # < placing a host in the TLS config will indicate a cert should be created
- hosts:
- appprod.mydomain.org
secretName: letsencrypt-prod # < cert-manager will store the created certificate in this secret.
因此,当我创建上面的 Ingress 资源时,会创建secretName
上面在我的 ingress 中引用的资源,并且还会创建一个具有相同名称的证书资源......即letsencrypt-prod
.
它将是接收 LetsEncrypt 验证成功过程的证书资源...
我得到了 TLS 加密,这里一切正常。
但是现在,我想知道更新过程将如何。因为我现在很确定这个更新证书过程不会自动发生......
我在这里阅读了一些东西https://docs.cert-manager.io/en/latest/reference/certificates.html?highlight=renewal#certificate-duration-and-renewal-window并且该文档说有必要附加到证书资源创建(kind:Certificate
)这种方式的spec.duration
和spec.renewBefore
属性
spec:
secretName: example-tls
duration: 24h
renewBefore: 12h
如果我的 LetsEncrypt 颁发的证书的默认期限为 90 天,我该如何指定这些spec.duration
和spec.renewBefore
属性?
我想解决这个问题,因为我的主要问题是我没有创建证书,它是在执行 Ingress 资源(上面引用的)时创建的。
我如何使用我正在做的这种方法来解决这里的更新过程?
更新
我是否需要创建一个特定的kind:Certificate
资源,引用我从 LetsEncrypt 获得的秘密?
我的意思是,像这样的东西?
apiVersion: certmanager.k8s.io/v1alpha1
kind: Certificate
metadata:
name: letsencrypt-prod
spec:
secretName: letsencrypt-prod
dnsNames:
- mydomain.com
acme:
config:
- http01:
ingressClass: kong
domains:
- mydomain.com
issuerRef:
name: letsencrypt-prod
kind: ClusterIssuer
我在这里有疑问,因为目前我没有得到证书更新操作