From 25911559b0838c9e3d30c092fd077d6a26f5a07d Mon Sep 17 00:00:00 2001 From: Maia Iyer Date: Mon, 10 Jul 2023 14:00:59 -0400 Subject: [PATCH] Apply suggestions from code review Signed-off-by: Maia Iyer Co-authored-by: Mariusz Sabath --- docs/conf/agent/base.conf | 2 +- docs/config-tornjak-server.md | 6 +++--- docs/quickstart/tornjak-configmap.yaml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/conf/agent/base.conf b/docs/conf/agent/base.conf index 23e0bf57..586d41b5 100644 --- a/docs/conf/agent/base.conf +++ b/docs/conf/agent/base.conf @@ -5,7 +5,7 @@ server { # [required] configure HTTP connection to Tornjak server http { - port = 10080 # opens at port 10000 + port = 10080 # opens at port 10080 } } diff --git a/docs/config-tornjak-server.md b/docs/config-tornjak-server.md index 354f96ff..c534f801 100644 --- a/docs/config-tornjak-server.md +++ b/docs/config-tornjak-server.md @@ -42,14 +42,14 @@ server { spire_socket_path = "unix:///tmp/spire-server/private/api.sock" # socket to communicate with SPIRE server http { # required block - port = 10080 # if HTTP enabled, opens HTTP listen port at container port 10000 + port = 10080 # if HTTP enabled, opens HTTP listen port at container port 10080 } https { - port = 10443 # if enabled, opens TLS listen port at container port 20000 + port = 10443 # if enabled, opens HTTPS listen port at container port 10443 cert = "sample-keys/tls.pem" # path of certificate for TLS key = "sample-keys/key.pem" # path of keys for TLS - ca = "sample-keys/rootCA.pem" + ca = "sample-keys/userCA.pem" # [optional, enables mTLS] User CA } } diff --git a/docs/quickstart/tornjak-configmap.yaml b/docs/quickstart/tornjak-configmap.yaml index de47213a..82c957c3 100644 --- a/docs/quickstart/tornjak-configmap.yaml +++ b/docs/quickstart/tornjak-configmap.yaml @@ -13,7 +13,7 @@ data: # configure HTTP connection to Tornjak server http { - port = 10080 # opens at port 10000 + port = 10080 # opens at port 10080 } }