Add pgadmin app
This commit is contained in:
parent
8156c3315d
commit
b99976ae58
21
argocd-apps/pgadmin.yaml
Normal file
21
argocd-apps/pgadmin.yaml
Normal 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
|
||||
20
manifests/pgadmin/values.yaml
Normal file
20
manifests/pgadmin/values.yaml
Normal 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
|
||||
Loading…
x
Reference in New Issue
Block a user