k3s-cluster/cluster/apps/database/postgresql/pgadmin4/helm-release.yaml

42 lines
940 B
YAML
Raw Normal View History

2023-04-07 01:17:53 -04:00
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: pgadmin4
namespace: database
spec:
interval: 5m
chart:
spec:
chart: pgadmin4
version: 1.14.x
sourceRef:
kind: HelmRepository
name: runix-charts
namespace: flux-system
values:
ingress:
enabled: true
annotations:
cert-manager.io/cluster-issuer: letsencrypt-production
2023-04-07 01:17:53 -04:00
traefik.ingress.kubernetes.io/router.entrypoints: websecure
hosts:
2023-06-14 22:40:49 -04:00
- host: &host pgadm.database.${SECRET_DOMAIN}
2023-04-07 01:17:53 -04:00
paths:
- path: "/"
2023-04-14 00:42:02 -04:00
pathType: Prefix
tls:
- hosts:
- *host
2023-06-14 00:51:04 -04:00
secretName: wildcard-main-tls
2023-06-15 00:42:45 -04:00
securityContext:
2023-06-14 00:51:04 -04:00
runAsUser: 10000
runAsGroup: 10000
2023-06-15 00:42:45 -04:00
fsGroup: 10000
containerSecurityContext:
enabled: true
2023-06-15 00:44:29 -04:00
allowPrivilegeEscalation: false
volumePermissions:
enabled: true