From d892d472183230b3607c1358dcc124f7db961a00 Mon Sep 17 00:00:00 2001 From: Yuli Date: Fri, 21 Jan 2022 15:41:54 +0200 Subject: [PATCH] Update README.md --- terraform/aws/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/terraform/aws/README.md b/terraform/aws/README.md index e2da178..8743afe 100644 --- a/terraform/aws/README.md +++ b/terraform/aws/README.md @@ -41,6 +41,7 @@ After this command, you can execute ```kubectl get nodes``` to list all nodes in 2. Create an SSL certificate for Databunker service and save it as Kubernetes secret ``` openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout tls.key -out tls.crt -subj "/CN=localhost" +kubectl create secret tls databunkertls --key="tls.key" --cert="tls.crt" ``` 3. Add Databunker charts repository using ```helm``` command and run ```helm update``` ```