Add pgadmin app

This commit is contained in:
dvirlabs 2025-09-21 01:54:23 +03:00
parent 8156c3315d
commit b99976ae58
2 changed files with 41 additions and 0 deletions

21
argocd-apps/pgadmin.yaml Normal file
View File

@ -0,0 +1,21 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: pgadmin
namespace: argocd
spec:
project: my-apps
source:
repoURL: https://git.dvirlabs.com/dvirlabs/my-apps.git
targetRevision: HEAD
path: charts/pgadmin-chart
helm:
valueFiles:
- ../../manifests/pgadmin/values.yaml
destination:
server: https://kubernetes.default.svc
namespace: my-apps
syncPolicy:
automated:
prune: true
selfHeal: true

View File

@ -0,0 +1,20 @@
image: dpage/pgadmin4:latest
pgadmin:
email: admin@dvirlabs.com
password: supersecret # change me
service:
type: ClusterIP
port: 80
ingress:
enabled: true
className: traefik
annotations:
traefik.ingress.kubernetes.io/router.entrypoints: websecure
traefik.ingress.kubernetes.io/router.tls: "true"
hosts:
- host: pgadmin.dvirlabs.com
path: /
pathType: Prefix