Helm/PostgreSQL: Difference between revisions
Jump to navigation
Jump to search
(8 intermediate revisions by the same user not shown) | |||
Line 39: | Line 39: | ||
--- | --- | ||
global: | global: | ||
defaultStorageClass: standard | |||
postgresql: | postgresql: | ||
auth: | auth: | ||
Line 47: | Line 47: | ||
database: academia | database: academia | ||
primary: | primary: | ||
service: | |||
type: LoadBalancer | |||
loadBalancerIP: 192.168.49.102 | |||
initdb: | initdb: | ||
scripts: | scripts: | ||
Line 58: | Line 61: | ||
-- create user | -- create user | ||
CREATE USER chorke WITH ENCRYPTED PASSWORD 'sadaqah!'; | CREATE USER chorke WITH ENCRYPTED PASSWORD 'sadaqah!'; | ||
ALTER USER chorke WITH SUPERUSER; | -- ALTER USER chorke WITH SUPERUSER; | ||
-- grant owner | |||
ALTER DATABASE academia_flair_staging OWNER TO chorke; | |||
ALTER DATABASE academia_audit_staging OWNER TO chorke; | |||
ALTER DATABASE academia_quote_staging OWNER TO chorke; | |||
ALTER DATABASE academia_users_staging OWNER TO chorke; | |||
-- grant access | -- grant access | ||
Line 66: | Line 75: | ||
GRANT ALL PRIVILEGES ON DATABASE academia_users_staging TO chorke; | GRANT ALL PRIVILEGES ON DATABASE academia_users_staging TO chorke; | ||
YML | YML | ||
</syntaxhighlight> | |||
|- | |||
|colspan="2"| | |||
---- | |||
|- | |||
|colspan="2"| | |||
<syntaxhighlight lang="bash"> | |||
sudo arp -s 192.168.49.102 02:42:c0:a8:31:02 | |||
sudo arp -d 192.168.49.102 # for delete | |||
arp -n | |||
arp -a | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 74: | Line 95: | ||
|valign='top'| | |valign='top'| | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
psql - | echo -n password: ; read -s PGPASSWORD; export PGPASSWORD; echo | ||
psql - | psql -h192.168.49.102 -p5432 -Uacademia academia | ||
psql -h192.168.49.102 -p5432 -Upostgres postgres | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|valign='top'| | |valign='top'| | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
psql 'postgres://academia:@ | echo -n password: ; read -s PGPASSWORD; export PGPASSWORD; echo | ||
psql 'postgres://postgres:@ | psql 'postgres://academia:@192.168.49.102:5432/academia' | ||
psql 'postgres://postgres:@192.168.49.102:5432/postgres' | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 97: | Line 120: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
kubectl -n postgresql run -i --tty --rm psql --image=alpine --restart=Never -- sh | kubectl -n postgresql run -i --tty --rm psql --image=alpine --restart=Never -- sh | ||
echo -n password: ;read -s PGPASSWORD;export PGPASSWORD | echo -n password: ; read -s PGPASSWORD; export PGPASSWORD; echo | ||
apk --update add postgresql-client inetutils-telnet | apk --update add --no-cache postgresql-client inetutils-telnet | ||
psql -d postgres -U postgres -h postgresql.postgresql.svc.cluster.local | psql -d postgres -U postgres -h postgresql.postgresql.svc.cluster.local | ||
Line 274: | Line 297: | ||
* [[Helm/Cert Manager|Helm » Cert Manager]] | * [[Helm/Cert Manager|Helm » Cert Manager]] | ||
* [https://artifacthub.io/packages/helm/bitnami/postgresql Helm » PostgreSQL] | * [https://artifacthub.io/packages/helm/bitnami/postgresql Helm » PostgreSQL] | ||
* [[Helm/MariaDB|Helm » MariaDB]] | |||
* [[Helm/GitLab|Helm » GitLab]] | * [[Helm/GitLab|Helm » GitLab]] | ||
* [[Helm]] | * [[Helm]] | ||
| valign="top" | | | valign="top" | | ||
* [[Helm/PgAdmin4|Helm » PgAdmin4]] | |||
| valign="top" | | | valign="top" | | ||
Line 290: | Line 315: | ||
* [https://bitnami.com/stack/postgresql/helm PostgreSQL » Bitnami » Package] | * [https://bitnami.com/stack/postgresql/helm PostgreSQL » Bitnami » Package] | ||
* [[Dockerized PostgreSQL|PostgreSQL » Dockerized]] | * [[Dockerized PostgreSQL|PostgreSQL » Dockerized]] | ||
* [[PostgreSQL/PgBouncer|PostgreSQL » PgBouncer]] | |||
* [[PostgreSQL/PgLoader|PostgreSQL » PgLoader]] | |||
* [[PostgreSQL]] | * [[PostgreSQL]] | ||
Line 316: | Line 343: | ||
* [[K8s/CSI Hostpath Driver|K8s » CSI Hostpath Driver]] | * [[K8s/CSI Hostpath Driver|K8s » CSI Hostpath Driver]] | ||
* [[K8s/Ingress|K8s » Ingress]] | * [[K8s/Ingress|K8s » Ingress]] | ||
* [[K8s/Service|K8s » Service]] | |||
* [[K8s/Run|K8s » Run]] | * [[K8s/Run|K8s » Run]] | ||
* [[MinIO]] | * [[MinIO]] |
Latest revision as of 09:16, 8 January 2025
helm repo add bitnami https://charts.bitnami.com/bitnami helm repo update && helm repo list kubectl config get-contexts
Config
export KUBECONFIG="${HOME}/.kube/dev-kubeconfig.yaml"
export KUBECONFIG="${HOME}/.kube/gcp-kubeconfig.yaml"
export KUBECONFIG="${HOME}/.kube/config"
Install
helm show values bitnami/postgresql --version=15.5.20|less
helm show values bitnami/postgresql --version=15.5.21|less
|
kubectl get ns|grep postgresql
kubectl delete ns postgresql
|
kubectl get ns|grep postgresql
kubectl create ns postgresql
|
| ||
cat <<YML | helm -n postgresql install postgresql bitnami/postgresql --version=15.5.21 -f -
---
global:
defaultStorageClass: standard
postgresql:
auth:
postgresPassword: sadaqah!
username: academia
password: sadaqah!
database: academia
primary:
service:
type: LoadBalancer
loadBalancerIP: 192.168.49.102
initdb:
scripts:
init-chorke.sql: |
-- create database
CREATE DATABASE academia_flair_staging;
CREATE DATABASE academia_audit_staging;
CREATE DATABASE academia_quote_staging;
CREATE DATABASE academia_users_staging;
-- create user
CREATE USER chorke WITH ENCRYPTED PASSWORD 'sadaqah!';
-- ALTER USER chorke WITH SUPERUSER;
-- grant owner
ALTER DATABASE academia_flair_staging OWNER TO chorke;
ALTER DATABASE academia_audit_staging OWNER TO chorke;
ALTER DATABASE academia_quote_staging OWNER TO chorke;
ALTER DATABASE academia_users_staging OWNER TO chorke;
-- grant access
GRANT ALL PRIVILEGES ON DATABASE academia_flair_staging TO chorke;
GRANT ALL PRIVILEGES ON DATABASE academia_audit_staging TO chorke;
GRANT ALL PRIVILEGES ON DATABASE academia_quote_staging TO chorke;
GRANT ALL PRIVILEGES ON DATABASE academia_users_staging TO chorke;
YML
| ||
| ||
sudo arp -s 192.168.49.102 02:42:c0:a8:31:02
sudo arp -d 192.168.49.102 # for delete
arp -n
arp -a
| ||
| ||
echo -n password: ; read -s PGPASSWORD; export PGPASSWORD; echo
psql -h192.168.49.102 -p5432 -Uacademia academia
psql -h192.168.49.102 -p5432 -Upostgres postgres
|
echo -n password: ; read -s PGPASSWORD; export PGPASSWORD; echo
psql 'postgres://academia:@192.168.49.102:5432/academia'
psql 'postgres://postgres:@192.168.49.102:5432/postgres'
|
Uninstall
helm uninstall -n postgresql postgresql
kubectl delete namespace postgresql
Swiss Knife
kubectl -n postgresql run -i --tty --rm psql --image=alpine --restart=Never -- sh
echo -n password: ; read -s PGPASSWORD; export PGPASSWORD; echo
apk --update add --no-cache postgresql-client inetutils-telnet
psql -d postgres -U postgres -h postgresql.postgresql.svc.cluster.local
psql -d postgres -U postgres -h postgresql.postgresql.svc
psql -d postgres -U postgres -h postgresql.postgresql
psql -d postgres -U postgres -h postgresql
AWS » EKS
AWS » EKS » EBS
cat << YML | kubectl apply -f -
---
apiVersion: v1
kind: PersistentVolume
metadata:
name: postgresql-pv
spec:
accessModes:
- ReadWriteOnce
awsElasticBlockStore:
fsType: ext4
volumeID: aws://ap-southeast-1/vol-0bbbd80804f1ae62a
capacity:
storage: 10Gi
persistentVolumeReclaimPolicy: Retain
storageClassName: "gp2"
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
labels:
app.kubernetes.io/name: postgresql
name: postgresql-pvc
namespace: postgresql
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 10Gi
storageClassName: "gp2"
volumeName: postgresql-pv
YML
AWS » EKS » Patch
kubectl -n postgresql get sts/postgresql -ojson|jq -r '.spec.template.spec.nodeSelector'
| |
| |
cat <<YML | kubectl -n postgresql patch sts/postgresql --patch-file=/dev/stdin
---
spec:
template:
spec:
nodeSelector:
topology.kubernetes.io/zone: minikube
YML
|
cat <<YML | kubectl -n postgresql patch sts/postgresql --patch-file=/dev/stdin
---
spec:
template:
spec:
nodeSelector:
topology.kubernetes.io/zone: ap-southeast-1a
YML
|
| |
kubectl -n postgresql get sts/postgresql -ojson|jq -r '.spec.template.spec.nodeSelector'
kubectl -n postgresql delete pods --all
|
Playground
helm -n postgresql install postgresql bitnami/postgresql --version=15.5.20
helm -n postgresql upgrade -i postgresql bitnami/postgresql --version=15.5.21
helm show values bitnami/postgresql --version=15.5.21|less
| |
| |
kubectl -n postgresql get secret postgresql -o json|jq -r '.data."postgres-password"'|base64 -d;echo
kubectl -n postgresql get secret postgresql -o json|jq -r '.data.password'|base64 -d;echo
kubectl -n postgresql exec -it svc/postgresql -c postgresql -- psql -Upostgres
kubectl -n postgresql exec -it svc/postgresql -c postgresql -- bash
kubectl -n postgresql exec -it svc/postgresql -- psql -Upostgres
| |
| |
kubectl config --kubeconfig=${HOME}/.kube/aws-kubeconfig.yaml view --flatten
kubectl config --kubeconfig=${HOME}/.kube/dev-kubeconfig.yaml view --flatten
kubectl config --kubeconfig=${HOME}/.kube/gcp-kubeconfig.yaml view --flatten
kubectl config --kubeconfig=${HOME}/.kube/config view --flatten
| |
| |
kubectl -n postgresql delete all --all
kubectl -n postgresql delete ing --all
kubectl -n postgresql delete sts --all
|
kubectl -n postgresql delete svc --all
kubectl -n postgresql delete pvc --all
kubectl -n postgresql delete pv --all
|
| |
kubectl -n postgresql rollout history sts postgresql
kubectl -n postgresql rollout restart sts postgresql
kubectl -n postgresql rollout status sts postgresql
|
kubectl -n postgresql exec -it postgresql-0 -- psql -Upostgres
kubectl -n postgresql logs -f svc/postgresql -c postgresql
kubectl -n postgresql logs -f svc/postgresql
|
References
| ||
| ||