feat(thin): switch to cloudnative-pg
chore(nginx-external): switch to default 443 port
fix(thin,cloudpg): use correct storage class
fix(thin,cloudpg): remove cpu limits
fix(thin,cloudpg): set cpu limits to 20m
chore(thin,cloudpg): setup backups
Revert "chore(thin,cloudpg): setup backups"
This reverts commit 15ef935a88
.
chore(thin,cloudpg): setup backups
chore(thin,cloudpg): use PodDisruptionBudgets instead of nodeMaintenanceWindow
chore(thin,cloudpg): scale down to 1 replica, disable PDB
fix(thin,hass): use new kustomization name for cloudinitpg
fix(thin,hass): use new postgres service name
fix(thin,hass): use CORRECT postgres service name
fix(thin,hass): convert elevation to integer
47 lines
No EOL
996 B
YAML
47 lines
No EOL
996 B
YAML
apiVersion: helm.toolkit.fluxcd.io/v2
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: pgadmin4
|
|
namespace: database
|
|
spec:
|
|
interval: 5m
|
|
chart:
|
|
spec:
|
|
chart: pgadmin4
|
|
version: "1.34.0"
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: runix-charts
|
|
namespace: flux-system
|
|
values:
|
|
ingress:
|
|
enabled: true
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt-production
|
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
|
hosts:
|
|
- host: &host pgadm.${SECRET_NEW_DOMAIN}
|
|
paths:
|
|
- path: "/"
|
|
pathType: Prefix
|
|
tls:
|
|
- hosts:
|
|
- *host
|
|
|
|
# securityContext:
|
|
# runAsUser: 10000
|
|
# runAsGroup: 10000
|
|
# fsGroup: 10000
|
|
#
|
|
# containerSecurityContext:
|
|
# enabled: true
|
|
# allowPrivilegeEscalation: false
|
|
|
|
# envVarsFromConfigMaps:
|
|
# - pgadmin4-secret
|
|
|
|
persistentVolume:
|
|
enabled: false
|
|
|
|
volumePermissions:
|
|
enabled: true |