From 1a75e02bf4d9dad383b7f6d40a3142bd8520266e Mon Sep 17 00:00:00 2001 From: "Cornelius A. Ludmann" Date: Mon, 2 May 2022 14:56:49 +0000 Subject: [PATCH] [installer] Add instructions on how to add own CA --- install/installer/docs/ca-certificate.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 install/installer/docs/ca-certificate.md diff --git a/install/installer/docs/ca-certificate.md b/install/installer/docs/ca-certificate.md new file mode 100644 index 00000000000000..ef9066a7aeb039 --- /dev/null +++ b/install/installer/docs/ca-certificate.md @@ -0,0 +1,17 @@ +# Add own CA certificate to your Gitpod installation + +When you want to use TLS certificates that are signed by a custom [CA](https://en.wikipedia.org/wiki/Certificate_authority), you can add this CA certificate to your Gitpod installation in order to make sure that Gitpod accepts these certificates. + +Follow these steps to add your own CA certificate: + +1. Save your CA certificate in a file called `ca.crt`. +2. Add a secret with the CA certificate like this: + ``` + kubectl create secret generic ca-certificate --from-file=ca.crt=./ca.crt + ``` +3. Add the following config to your `gitpod.config.yaml` file: + ``` + customCACert: + kind: secret + name: ca-certificate + ```