Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Insert excerpt
General Usage Engine Private Edition Preparations
General Usage Engine Private Edition Preparations
nametls-cert-manager-part-1
nopaneltrue
Info

Please ensure Cert-manager CRD resources are installed prior to Cert-manager installation.

Helm install command assumes service account for Cert-manager already exists.

code

Note

When installing cert-manager, you need to make sure to specify the cert-manager specific service account and namespace created in the Set Up Kubernetes Cluster - AWS chapter (refer to the iam.serviceAccounts section in the uepe-eks.yaml file).

Example installation command:

Code Block
languagebash
helm install \
  cert-manager jetstack/cert-manager \
  --namespace cert-manager \
  --create-namespace \
  --version v1.14.4 \
  --set serviceAccount.create=false \
  --set serviceAccount.name=cert-manager

...

Service Account name set to http://metadata.name/ under iam.serviceAccounts portion in the uepe-eks.yaml file in Set Up Kubernetes Cluster - AWS section

...

 \
  --set installCRDs=true

Insert excerpt
General Usage Engine Private Edition Preparations
General Usage Engine Private Edition Preparations
nametls-cert-manager-part-2
nopaneltrue

...