I am trying to create a certificate, but I ran into the following error while trying to create a Cluster Issuer.
{
"type": "urn:ietf:params:acme:error:malformed",
"detail": "Method not allowed",
"status": 405
}
I used the following commands
$ helm install cert-manager jetstack/cert-manager --namespace cert-manager-new --version v1.3.0 --set installCRDs=true
apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
name: letsencrypt-staging
spec:
acme:
email: mmadiawetsa@yahoo.com
server: https://acme-staging-v02.api.letsencrypt.org/directory
privateKeySecretRef:
name: example-issuer-account-key
solvers:
- http01:
ingress:
class: nginx
$ kubectl apply -f .yaml
helm 3.5.2
Kubernetes EKS 1.16
cert-manager 1.3.0