29 lines
1.4 KiB
Plaintext
29 lines
1.4 KiB
Plaintext
# This file and its contents are licensed under the Apache License 2.0.
|
|
# Please see the included NOTICE for copyright information and LICENSE for a copy of the license.
|
|
|
|
TimescaleDB can be accessed via port 5432 on the following DNS name from within your cluster:
|
|
{{ template "timescaledb.fullname" . }}.{{ .Release.Namespace }}.svc.cluster.local
|
|
|
|
To get your password for superuser run:
|
|
|
|
# superuser password
|
|
PGPASSWORD_SUPERUSER=$(kubectl get secret --namespace {{ .Release.Namespace }} {{ template "timescaledb.fullname" . }} -o jsonpath="{.data.password-superuser}" | base64 --decode)
|
|
|
|
# admin password
|
|
PGPASSWORD_ADMIN=$(kubectl get secret --namespace {{ .Release.Namespace }} {{ template "timescaledb.fullname" . }} -o jsonpath="{.data.password-admin}" | base64 --decode)
|
|
|
|
To connect to your database:
|
|
|
|
1. Run a postgres pod and connect using the psql cli:
|
|
# login as superuser
|
|
kubectl run -i --tty --rm psql --image=postgres \
|
|
--env "PGPASSWORD=$PGPASSWORD_SUPERUSER" \
|
|
--command -- psql -U postgres \
|
|
-h {{ template "timescaledb.fullname" . }}.{{ .Release.Namespace }}.svc.cluster.local postgres
|
|
|
|
# login as admin
|
|
kubectl run -i -tty --rm psql --image=postgres \
|
|
--env "PGPASSWORD=$PGPASSWORD_ADMIN" \
|
|
--command -- psql -U admin \
|
|
-h {{ template "timescaledb.fullname" . }}.{{ .Release.Namespace }}.svc.cluster.local postgres
|