35 minutes to generate a certificate
My domain is: nference.online
I followed the official documentation- Cloudflare - cert-manager Documentation
Then I tried to generate the certificate using the yaml-
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: any-nference
spec:
secretName: any-nference-online-tls
duration: 2160h # 90d
renewBefore: 360h # 15d
subject:
organizations:
- nference
isCA: false
privateKey:
algorithm: RSA
encoding: PKCS1
size: 2048
usages:
- server auth
- client auth
dnsNames:
- any.nference.online
issuerRef:
name: prod-issuer
kind: ClusterIssuer
Outout-
Normal Issuing 77m cert-manager-certificates-trigger Issuing certificate as Secret does not exist
Normal Generated 77m cert-manager-certificates-key-manager Stored new private key in temporary Secret resource "any-nference-mrzj9"
Normal Requested 77m cert-manager-certificates-request-manager Created new CertificateRequest resource "any-nference-1"
Normal Issuing 42m cert-manager-certificates-issuing The certificate has been successfully issued
Although I am getting the certificate, as you can see from the log it is taking 35 minutes to issue a certificate.