Note! When installing cert-manager, you need to make sure to use the cert-manager specific GCP service account and namespace specified in the Set Up Kubernetes Cluster - GCP chapter (refer to the IAM section in the terraform.tfvars file). Create a file called cert-manager-values.yaml and populate it with the following helm values: Code Block |
---|
installCRDs: true
serviceAccount:
annotations:
iam.gke.io/gcp-service-account: <cert_manager_service_account from terraform output> |
Example installation command: Code Block |
---|
helm install \
cert-manager jetstack/cert-manager \
--namespace cert-manager \
--create-namespace \
--version v1.14.4 \
-f cert-manager-values.yaml |
|