This documentation is for an older version of GoodData.
Go to the latest version.
Ingress with Self-managed Certificate
Release Notice
GoodData.CN ready for Kubernetes will be published during May 2021. Stay tuned and watch GoodData Developers website.
TODO - these pages need to be revisited and updated after TLS and Organizations updates.
Assuming you have private key in file tls-private-key.pem
, CA-signed certificate and CA certificate
in file tls-certificate.pem
. Create Kubernetes namespace where the GoodData.CN will be deployed
and prepare Secret within this namespace.
$ kubectl create namespace gooddata-cn
namespace/gooddata-cn created
$ kubectl -n gooddata-cn create secret tls gooddata-cn-tls --cert=tls-certificate.pem --key=tls-private-key.pem
secret/gooddata-cn-tls created
You will refer to this Secret later, during installation of the application Helm chart.