Manage TLS Secrets for Ingress
masterYou can manage TLS certificates in three ways:
- Helm-managed: Copy your certificate and key values directly into the
ingress.secretsentry in yourvalues.yaml. - External management: Create a TLS secret manually in Kubernetes (e.g., named
databunker.service-tls). - Cert-manager: Use a tool like
cert-managerto manage secrets automatically.
Certificate files must be PEM-encoded. Example formats:
Certificate:
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----Private Key:
-----BEGIN RSA PRIVATE KEY-----
...
-----END RSA PRIVATE KEY-----