certmanager v1.14

Issuer.spec.acme.solvers[].http01.ingress.podTemplate.spec.vault

Vault configures this issuer to sign certificates using a HashiCorp Vault PKI backend.

8 fields
Issuer.spec.acme.solvers[].http01.ingress.podTemplate.spec.vault fields and descriptions
Field / TypeDescription
object required

Auth configures how cert-manager authenticates with the Vault server.

caBundle
string

Base64-encoded bundle of PEM CAs which will be used to validate the certificate chain presented by Vault. Only used if using HTTPS to connect to Vault and ignored for HTTP connections. Mutually exclusive with CABundleSecretRef. If neither CABundle nor CABundleSecretRef are defined, the certificate bundle in the cert-manager controller container is used to validate the TLS connection.

  • format: byte
object

Reference to a Secret containing a bundle of PEM-encoded CAs to use when verifying the certificate chain presented by Vault when using HTTPS. Mutually exclusive with CABundle. If neither CABundle nor CABundleSecretRef are defined, the certificate bundle in the cert-manager controller container is used to validate the TLS connection. If no key for the Secret is specified, cert-manager will default to 'ca.crt'.

object

Reference to a Secret containing a PEM-encoded Client Certificate to use when the Vault server requires mTLS.

object

Reference to a Secret containing a PEM-encoded Client Private Key to use when the Vault server requires mTLS.

namespace
string

Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows Vault environments to support Secure Multi-tenancy. e.g: "ns1" More about namespaces can be found here https://www.vaultproject.io/docs/enterprise/namespaces

path
string required

Path is the mount path of the Vault PKI backend's `sign` endpoint, e.g: "my_pki_mount/sign/my-role-name".

server
string required

Server is the connection address for the Vault server, e.g: "https://vault.example.com:8200".