This message was deleted.
# general
a
This message was deleted.
p
Copy code
kubectl get --raw /apis/cert-manager.io
{"kind":"APIGroup","apiVersion":"v1","name":"<http://cert-manager.io|cert-manager.io>","versions":[{"groupVersion":"<http://cert-manager.io/v1|cert-manager.io/v1>","version":"v1"}],"preferredVersion":{"groupVersion":"<http://cert-manager.io/v1|cert-manager.io/v1>","version":"v1"}}
same as the
api-versions
but added for completeness
I've pulled up a simple test chart and run
helm template
to render it. The chart just creates a secret with this:
Copy code
data:
  caps: {{ .Capabilities.APIVersions }}
and cert-manager is missing from there so clearly not a Rancher issue
helm template doesn't show all the api versions you have to use
install
instead and using that I see:
<http://cert-manager.io/v1|cert-manager.io/v1>
I found the issue was the cert-manager I had installed v1.11 or v1.12...I had to uninstall it and it's CRDs and re-install 1.5(!) then upgrade Rancher and re-upgrde cert-manager.
156 Views