mirror of
https://github.com/nold360/hive-apps
synced 2024-12-22 13:01:21 +00:00
add: mongo-gui
This commit is contained in:
parent
49e501c256
commit
0a9d099513
1 changed files with 38 additions and 7 deletions
|
@ -125,6 +125,19 @@ controllers:
|
||||||
command: ["python3"]
|
command: ["python3"]
|
||||||
args: ["/app/bi/agents/researcher/app.py", "worker", "-l", "info"]
|
args: ["/app/bi/agents/researcher/app.py", "worker", "-l", "info"]
|
||||||
|
|
||||||
|
mongoui:
|
||||||
|
containers:
|
||||||
|
main:
|
||||||
|
image:
|
||||||
|
repository: ugleiton/mongo-gui
|
||||||
|
tag: latest
|
||||||
|
pullPolicy: Always
|
||||||
|
env:
|
||||||
|
MONGO_URL:
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: bi-mongo-bi-bi
|
||||||
|
key: connectionString.standardSrv
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
secret:
|
secret:
|
||||||
|
@ -142,10 +155,28 @@ persistence:
|
||||||
type: persistentVolumeClaim
|
type: persistentVolumeClaim
|
||||||
accessMode: ReadWriteOnce
|
accessMode: ReadWriteOnce
|
||||||
|
|
||||||
# service:
|
service:
|
||||||
# main:
|
main:
|
||||||
# controller: main
|
controller: mongoui
|
||||||
# ports:
|
ports:
|
||||||
# http:
|
http:
|
||||||
# port: 8000
|
port: 4321
|
||||||
# type: ClusterIP
|
type: ClusterIP
|
||||||
|
|
||||||
|
ingress:
|
||||||
|
main:
|
||||||
|
annotations:
|
||||||
|
cert-manager.io/cluster-issuer: vault-issuer
|
||||||
|
enabled: true
|
||||||
|
hosts:
|
||||||
|
- host: mongo.dc
|
||||||
|
paths:
|
||||||
|
- path: /
|
||||||
|
service:
|
||||||
|
# name: main
|
||||||
|
identifier: main
|
||||||
|
port: 4321
|
||||||
|
tls:
|
||||||
|
- hosts:
|
||||||
|
- mongo.dc
|
||||||
|
secretName: mongo-tls
|
||||||
|
|
Loading…
Reference in a new issue