From caab01a5da5faccca54e6222eabf5046421a178e Mon Sep 17 00:00:00 2001 From: Mariusz Sabath Date: Tue, 10 May 2022 13:25:47 -0400 Subject: [PATCH] Updated Vault documentation --- docs/vault.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/vault.md b/docs/vault.md index fa05af69..d29e950f 100644 --- a/docs/vault.md +++ b/docs/vault.md @@ -17,7 +17,7 @@ deployment.apps/tsi-vault created #### Obtain remote access to Vault service For `minikube` obtain the current endpoint as follow -
Click to view minikube steps +
[Click] to view minikube steps ```console minikube service tsi-vault -n tsi-vault --url @@ -29,7 +29,7 @@ export VAULT_ADDR=http://192.168.99.105:30229 To access Vault remotely in `IKS`, setup ingress access. -
Click to view IKS steps +
[Click] to view IKS steps Obtain the ingress name using `ibmcloud` cli: ```console @@ -75,12 +75,12 @@ $ kubectl -n tsi-vault create -f ingress-IKS.yaml Create VAULT_ADDR env. variable: ```console -export VAULT_ADDR="http://" +export VAULT_ADDR="http://tsi-vault." ```
To access Vault remotely OpenShift (including IKS ROKS) -
Click to view OpenShift steps +
[Click] to view OpenShift steps This assumes the OpenShift command line is already installed. Otherwise see the [documentation](https://docs.openshift.com/container-platform/4.2/cli_reference/openshift_cli/getting-started-cli.html) @@ -96,7 +96,7 @@ export ROOT_TOKEN=$(kubectl -n tsi-vault logs $(kubectl -n tsi-vault get po | gr Test the remote connection to vault: ```console -$ curl http:/// +$ curl $VAULT_ADDR Temporary Redirect. ``` At this point, this is an expected result.