From 76761aed995f14428ca0083a2c21092f56d5bd74 Mon Sep 17 00:00:00 2001 From: Jan Steffen Date: Thu, 23 Jun 2022 16:10:53 +0200 Subject: [PATCH] Update README.md --- README.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3ed9479..b0ef5bc 100644 --- a/README.md +++ b/README.md @@ -27,12 +27,20 @@ Configure at least the following settings within your `values.yaml` : ```yaml # Configure Vault connection vault: - addr: "" # Address of the Vault instance + addr: "" # Required address of Vault tls: - secretName: "" # Specify secret containing CA to access Vault + secretName: "" # Required secret containing CA to access Vault credentials: - secretName: "" # Specify secret containing AppRole credentials as fields VAULT_ROLE_ID and VAULT_SECRET_ID, see https://www.vaultproject.io/docs/auth/approle - namespace: "" # Which Vault namespace to connect to + secretName: "" # Required secret containing AppRole credentials as fields VAULT_ROLE_ID and VAULT_SECRET_ID, see https://www.vaultproject.io/docs/auth/approle + namespace: "" # Optional Vault namespace to connect to + +# Set which secret engines are allowed to access namespaced +allowedSecretEngines: + - app + +# Set which paths in Vault are allowed to be accessed from any namespace +sharedPaths: + - shared ``` Install VaultOperator with the following command: