From d06415c6a55fab521e31f7d29697a28f4deb5d4a Mon Sep 17 00:00:00 2001 From: zerg-junior Date: Wed, 25 Oct 2017 10:40:31 +0200 Subject: [PATCH] Change cluster name to "acid-minimal" in readme Cluster created via `minimal-postgres-manifest` has the name `acid-minimal-cluster`, not `acid-test-cluster` --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 59fc51f16..7ac3cb438 100644 --- a/README.md +++ b/README.md @@ -84,12 +84,12 @@ If you perfer to build the image yourself follow up down below. ### Connect to PostgreSQL -We can use the generated secret of the `postgres` robot user to connect to our `acid-test-cluster` master running in Minikube: +We can use the generated secret of the `postgres` robot user to connect to our `acid-minimal-cluster` master running in Minikube: - $ export HOST_PORT=$(minikube service acid-test-cluster --url | sed 's,.*/,,') + $ export HOST_PORT=$(minikube service acid-minimal-cluster --url | sed 's,.*/,,') $ export PGHOST=$(echo $HOST_PORT | cut -d: -f 1) $ export PGPORT=$(echo $HOST_PORT | cut -d: -f 2) - $ export PGPASSWORD=$(kubectl --context minikube get secret postgres.acid-test-cluster.credentials -o 'jsonpath={.data.password}' | base64 -d) + $ export PGPASSWORD=$(kubectl --context minikube get secret postgres.acid-minimal-cluster.credentials -o 'jsonpath={.data.password}' | base64 -d) $ psql -U postgres