Custom SSL Configuration
Add Custom SSL with Helm files
Add new secret object
$ vi example-ssl-secret.ymlIf necessary, you can add multiple SSL files as follows.
apiVersion: v1
kind: Secret
metadata:
name: oobeya-addons-ssl
namespace: oobeya
type: Opaque
stringData:
ssl.crt: |
-----BEGIN CERTIFICATE-----
-----END CERTIFICATE-----
tls.key: |
-----BEGIN CERTIFICATE-----
-----END CERTIFICATE-----
another-custom-ssl.crt: |
-----BEGIN CERTIFICATE-----
-----END CERTIFICATE-----Edit values.yaml
Find
oobeyaAddonsstep
To confirm that SSLs are actually deployed to the Pod:
Expected output example:
Last updated