Helm/PostgreSQL: Difference between revisions
Jump to navigation
Jump to search
(→Patch) |
|||
(12 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
helm repo add bitnami https://charts.bitnami.com/bitnami | helm repo add bitnami https://charts.bitnami.com/bitnami | ||
helm repo update && helm repo list | helm repo update && helm repo list | ||
kubectl config get-contexts | |||
==Config== | ==Config== | ||
Line 38: | Line 39: | ||
--- | --- | ||
global: | global: | ||
defaultStorageClass: standard | |||
postgresql: | postgresql: | ||
auth: | auth: | ||
Line 73: | Line 74: | ||
|valign='top'| | |valign='top'| | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
echo -n password: ; read -s PGPASSWORD; export PGPASSWORD; echo | |||
psql -h psql.k8s.local -p 5432 -U academia academia | psql -h psql.k8s.local -p 5432 -U academia academia | ||
psql -h psql.k8s.local -p 5432 -U postgres postgres | psql -h psql.k8s.local -p 5432 -U postgres postgres | ||
Line 79: | Line 81: | ||
|valign='top'| | |valign='top'| | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
echo -n password: ; read -s PGPASSWORD; export PGPASSWORD; echo | |||
psql 'postgres://academia:@psql.k8s.local:5432/academia' | psql 'postgres://academia:@psql.k8s.local:5432/academia' | ||
psql 'postgres://postgres:@psql.k8s.local:5432/postgres' | psql 'postgres://postgres:@psql.k8s.local:5432/postgres' | ||
Line 87: | Line 90: | ||
|} | |} | ||
==AWS » | ==Uninstall== | ||
<syntaxhighlight lang="bash"> | |||
helm uninstall -n postgresql postgresql | |||
kubectl delete namespace postgresql | |||
</syntaxhighlight> | |||
==Swiss Knife== | |||
<syntaxhighlight lang="bash"> | |||
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 | |||
</syntaxhighlight> | |||
==AWS » EKS== | |||
===AWS » EKS » EBS=== | |||
<syntaxhighlight lang="yaml"> | <syntaxhighlight lang="yaml"> | ||
cat << YML | kubectl apply -f - | cat << YML | kubectl apply -f - | ||
Line 94: | Line 116: | ||
kind: PersistentVolume | kind: PersistentVolume | ||
metadata: | metadata: | ||
name: | name: postgresql-pv | ||
spec: | spec: | ||
accessModes: | accessModes: | ||
Line 111: | Line 133: | ||
labels: | labels: | ||
app.kubernetes.io/name: postgresql | app.kubernetes.io/name: postgresql | ||
name: | name: postgresql-pvc | ||
namespace: postgresql | namespace: postgresql | ||
spec: | spec: | ||
Line 120: | Line 142: | ||
storage: 10Gi | storage: 10Gi | ||
storageClassName: "gp2" | storageClassName: "gp2" | ||
volumeName: | volumeName: postgresql-pv | ||
YML | YML | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==AWS » Patch== | ===AWS » EKS » Patch=== | ||
{| | {| | ||
|colspan="2"| | |colspan="2"| | ||
Line 158: | Line 180: | ||
YML | YML | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|- | |- | ||
Line 172: | Line 192: | ||
|} | |} | ||
==Playground== | ==Playground== | ||
Line 273: | Line 276: | ||
* [[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]] | * [[Helm]] | ||
| valign="top" | | | valign="top" | | ||
* [[Helm/PgAdmin4|Helm » PgAdmin4]] | |||
| valign="top" | | | valign="top" | | ||
Line 314: | Line 320: | ||
* [[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]] | |||
* [[MinIO]] | * [[MinIO]] | ||
* [[CIDR]] | * [[CIDR]] |
Latest revision as of 01:12, 17 November 2024
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:
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 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
| ||
| ||
echo -n password: ; read -s PGPASSWORD; export PGPASSWORD; echo
psql -h psql.k8s.local -p 5432 -U academia academia
psql -h psql.k8s.local -p 5432 -U postgres postgres
|
echo -n password: ; read -s PGPASSWORD; export PGPASSWORD; echo
psql 'postgres://academia:@psql.k8s.local:5432/academia'
psql 'postgres://postgres:@psql.k8s.local: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
| ||
| ||