Categories

Versions

Customer Internal CA

Setup Customer Internal CA is written in Customer Internal CA

Use Customer Internal CA for Kubernates deployments

The certificate.crt and the private.key need to be installed as Kubernates TLS secret

Create the TLS secret:

kubectl create secret tls my-tls-secret \
  --cert=path/to/cert/file \
  --key=path/to/key/file

Use the TLS secret name in custom-values.yaml:

common:
  .........
  customCA:
    enabled: True
    tlsSecretName: my-tls-secret