Change cluster name to "acid-minimal" in readme

Cluster created via `minimal-postgres-manifest` has the name `acid-minimal-cluster`, not `acid-test-cluster`
This commit is contained in:
zerg-junior 2017-10-25 10:40:31 +02:00 committed by GitHub
parent a98a7c95c2
commit d06415c6a5
1 changed files with 3 additions and 3 deletions

View File

@ -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