In the upcoming lecture, a few minor changes are required per the official docs:
1. Update the API version used:
apiVersion: cert-manager.io/v1
2. Remove the acme challenge from the certificate spec.
The full updated Certificate manifest can be found below:
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: yourdomain-com-tls
spec:
secretName: yourdomain-com
issuerRef:
name: letsencrypt-prod
kind: ClusterIssuer
commonName: yourdomain.com
dnsNames:
- yourdomain.com
- www.yourdomain.comQA thread for reference with some troubleshooting steps (see Joseph's post near the bottom)