Note! When installing cert-manager, you need to ensure to use the cert-manager specific service account and namespace specified in the Set Up Kubernetes Cluster - Azure chapter (see the cert_manager_service_account and cert_manager_namespace from terraform output). Create a file called cert-manager-values.yaml and populate it with the following helm values: Code Block |
---|
| installCRDs: true
podLabels:
azure.workload.identity/use: "true"
serviceAccount:
create: true
name: <cert_manager_service_account from terraform output>
labels:
azure.workload.identity/use: "true"
azure.workload.identity/client-id: <cert_manager_client_id from terraform output> |
Example installation command: Code Block |
---|
helm install \
cert-manager jetstack/cert-manager \
--namespace <cert_manager_namespace from terraform output> \
--create-namespace \
--version v1.14.4 \
-f cert-manager-values.yaml |
|