Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.37 KB

File metadata and controls

27 lines (20 loc) · 1.37 KB

CA Cluster Issuer Configuration

This guide assumes that you have already generated your root certificate and key.

The ca-clusterissuer only needs to be supplied two values to function.

  • tls_crt - This is a base64 encoded root certificate.
  • tls_key - This is the base64 encoded key/secret.

These values need to be supplied when attempting to install the ca-clusterissuer into a supervisor. The format of the file can be seen in values.yml. We do not provide any defaults in this file, it exists only to demonstrate the structure. To generate a base64 version of your certificate and your key, you can run the following commands:

$ cat crt.pem | base64 -w0 # or at crt.pem | base64 -b0 on BSD based systems
$ cat key.pem | base64 -w0 # or at key.pem | base64 -b0 on BSD based systems

These values can then be copied into the vCenter text box when prompted.

⚠️ Caution CA issuers are generally for advanced users with a good idea of how to run a PKI. To be used safely in production, CA issuers introduce complex planning requirements around rotation, trust store distribution and disaster recovery.

For more information on CA issuers, visit the ca cert-manager documentation.