Generate the kubeconfig file for your cluster using the Kubeconfig File button in the Cluster view of your cluster.
Save the generated file as $HOME/.kube/config and run kubectl get nodes to verify it works.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # First dump the current ClusterIssuer and Certificates (you'll need the issuer config later). | |
| kubectl get -o yaml --all-namespaces issuer,clusterissuer,certificates > cert-manager-backup.yaml | |
| # Now delete the current cert-manager installation. | |
| kubectl delete deployments test | |
| # Then apply the new CRD: | |
| kubectl apply -f https://raw.githubusercontent.com/jetstack/cert-manager/release-0.9/deploy/manifests/00-crds.yaml | |
| # Apply the "disable-validation" flag to the namespace. |