Skip to content
Snippets Groups Projects
Commit 1d2fb009 authored by Henning Jacobs's avatar Henning Jacobs Committed by GitHub
Browse files

how to connect via psql (#15)

parent c08e83be
Branches
Tags
No related merge requests found
......@@ -138,3 +138,13 @@ permissions there).
### Watch Pods being created
$ kubectl --context minikube get pods -w --show-labels
### Connect to PostgreSQL
We can use the generated secret of the `postgres` robot user to connect to our `acid-testcluster` master running in Minikube:
$ export HOST_PORT=$(minikube service acid-testcluster --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-testcluster.credentials.postgresql.acid.zalan.do -o 'jsonpath={.data.password}' | base64 -d)
$ psql -U postgres
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment