166 lines
4.9 KiB
YAML
166 lines
4.9 KiB
YAML
|
# Source: calckey/charts/postgresql/templates/primary/statefulset.yaml
|
||
|
apiVersion: apps/v1
|
||
|
kind: StatefulSet
|
||
|
metadata:
|
||
|
name: calckey-postgresql
|
||
|
namespace: default
|
||
|
labels:
|
||
|
app.kubernetes.io/name: postgresql
|
||
|
helm.sh/chart: postgresql-11.1.3
|
||
|
app.kubernetes.io/instance: calckey
|
||
|
app.kubernetes.io/managed-by: Helm
|
||
|
app.kubernetes.io/component: primary
|
||
|
annotations:
|
||
|
spec:
|
||
|
replicas: 1
|
||
|
serviceName: calckey-postgresql-hl
|
||
|
updateStrategy:
|
||
|
rollingUpdate: {}
|
||
|
type: RollingUpdate
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app.kubernetes.io/name: postgresql
|
||
|
app.kubernetes.io/instance: calckey
|
||
|
app.kubernetes.io/component: primary
|
||
|
template:
|
||
|
metadata:
|
||
|
name: calckey-postgresql
|
||
|
labels:
|
||
|
app.kubernetes.io/name: postgresql
|
||
|
helm.sh/chart: postgresql-11.1.3
|
||
|
app.kubernetes.io/instance: calckey
|
||
|
app.kubernetes.io/managed-by: Helm
|
||
|
app.kubernetes.io/component: primary
|
||
|
annotations:
|
||
|
spec:
|
||
|
serviceAccountName: default
|
||
|
|
||
|
affinity:
|
||
|
podAffinity:
|
||
|
|
||
|
podAntiAffinity:
|
||
|
preferredDuringSchedulingIgnoredDuringExecution:
|
||
|
- podAffinityTerm:
|
||
|
labelSelector:
|
||
|
matchLabels:
|
||
|
app.kubernetes.io/name: postgresql
|
||
|
app.kubernetes.io/instance: calckey
|
||
|
app.kubernetes.io/component: primary
|
||
|
namespaces:
|
||
|
- "default"
|
||
|
topologyKey: kubernetes.io/hostname
|
||
|
weight: 1
|
||
|
nodeAffinity:
|
||
|
|
||
|
securityContext:
|
||
|
fsGroup: 1001
|
||
|
hostNetwork: false
|
||
|
hostIPC: false
|
||
|
initContainers:
|
||
|
containers:
|
||
|
- name: postgresql
|
||
|
image: docker.io/bitnami/postgresql:14.2.0-debian-10-r14
|
||
|
imagePullPolicy: "IfNotPresent"
|
||
|
securityContext:
|
||
|
runAsUser: 1001
|
||
|
env:
|
||
|
- name: BITNAMI_DEBUG
|
||
|
value: "false"
|
||
|
- name: POSTGRESQL_PORT_NUMBER
|
||
|
value: "5432"
|
||
|
- name: POSTGRESQL_VOLUME_DIR
|
||
|
value: "/bitnami/postgresql"
|
||
|
- name: PGDATA
|
||
|
value: "/bitnami/postgresql/data"
|
||
|
# Authentication
|
||
|
- name: POSTGRES_USER
|
||
|
value: "calckey"
|
||
|
- name: POSTGRES_POSTGRES_PASSWORD
|
||
|
valueFrom:
|
||
|
secretKeyRef:
|
||
|
name: calckey-postgresql
|
||
|
key: postgres-password
|
||
|
- name: POSTGRES_PASSWORD
|
||
|
valueFrom:
|
||
|
secretKeyRef:
|
||
|
name: calckey-postgresql
|
||
|
key: password
|
||
|
- name: POSTGRES_DB
|
||
|
value: "calckey_production"
|
||
|
# Replication
|
||
|
# Initdb
|
||
|
# Standby
|
||
|
# LDAP
|
||
|
- name: POSTGRESQL_ENABLE_LDAP
|
||
|
value: "no"
|
||
|
# TLS
|
||
|
- name: POSTGRESQL_ENABLE_TLS
|
||
|
value: "no"
|
||
|
# Audit
|
||
|
- name: POSTGRESQL_LOG_HOSTNAME
|
||
|
value: "false"
|
||
|
- name: POSTGRESQL_LOG_CONNECTIONS
|
||
|
value: "false"
|
||
|
- name: POSTGRESQL_LOG_DISCONNECTIONS
|
||
|
value: "false"
|
||
|
- name: POSTGRESQL_PGAUDIT_LOG_CATALOG
|
||
|
value: "off"
|
||
|
# Others
|
||
|
- name: POSTGRESQL_CLIENT_MIN_MESSAGES
|
||
|
value: "error"
|
||
|
- name: POSTGRESQL_SHARED_PRELOAD_LIBRARIES
|
||
|
value: "pgaudit"
|
||
|
ports:
|
||
|
- name: tcp-postgresql
|
||
|
containerPort: 5432
|
||
|
livenessProbe:
|
||
|
failureThreshold: 6
|
||
|
initialDelaySeconds: 30
|
||
|
periodSeconds: 10
|
||
|
successThreshold: 1
|
||
|
timeoutSeconds: 5
|
||
|
exec:
|
||
|
command:
|
||
|
- /bin/sh
|
||
|
- -c
|
||
|
- exec pg_isready -U "calckey" -d "dbname=calckey_production" -h 127.0.0.1 -p 5432
|
||
|
readinessProbe:
|
||
|
failureThreshold: 6
|
||
|
initialDelaySeconds: 5
|
||
|
periodSeconds: 10
|
||
|
successThreshold: 1
|
||
|
timeoutSeconds: 5
|
||
|
exec:
|
||
|
command:
|
||
|
- /bin/sh
|
||
|
- -c
|
||
|
- -e
|
||
|
|
||
|
- |
|
||
|
exec pg_isready -U "calckey" -d "dbname=calckey_production" -h 127.0.0.1 -p 5432
|
||
|
[ -f /opt/bitnami/postgresql/tmp/.initialized ] || [ -f /bitnami/postgresql/.initialized ]
|
||
|
resources:
|
||
|
limits: {}
|
||
|
requests:
|
||
|
cpu: 250m
|
||
|
memory: 256Mi
|
||
|
volumeMounts:
|
||
|
- name: dshm
|
||
|
mountPath: /dev/shm
|
||
|
- name: data
|
||
|
mountPath: /bitnami/postgresql
|
||
|
volumes:
|
||
|
- name: dshm
|
||
|
emptyDir:
|
||
|
medium: Memory
|
||
|
volumeClaimTemplates:
|
||
|
- metadata:
|
||
|
name: data
|
||
|
spec:
|
||
|
accessModes:
|
||
|
- "ReadWriteOnce"
|
||
|
resources:
|
||
|
requests:
|
||
|
storage: "25Gi"
|
||
|
storageClassName: longhorn
|