Maybe this version

This commit is contained in:
Amarpreet Minhas 2023-07-10 22:19:14 +00:00
parent 6491b5f050
commit 109e483572
2 changed files with 47 additions and 1 deletions

View file

@ -54,4 +54,4 @@ helmApps:
namespace: nextcloud
repoURL: https://nextcloud.github.io/helm/
chart: nextcloud
revision: 3.4.4
revision: 3.5.0

46
argo/wallabag/values.yaml Normal file
View file

@ -0,0 +1,46 @@
---
image:
tag: 2.5.1
env:
- name: POSTGRES_USER
value: wallabag
- name: POPULATE_DATABASE
value: False
- name: SYMFONY__ENV__DATABASE_DRIVER
value: pdo_pgsql
- name: SYMFONY__ENV__DATABASE_HOST
value: sedan.minhas.io
- name: SYMFONY__ENV__DATABASE_PORT
value: 5432
- name: SYMFONY__ENV__DATABASE_NAME
value: wallabag
- name: SYMFONY__ENV__DATABASE_USER
value: wallabag
- name: SYMFONY__ENV__DOMAIN_NAME
value: https://wallabag.minhas.io
- name: POSTGRES_PASSWORD
valueFrom:
secretKeyRef:
name: wallabag
key: db_pw
- name: SYMFONY__ENV__DATABASE_PASSWORD
valueFrom:
secretKeyRef:
name: wallabag
key: db_pw
spec:
serviceAccountName: wallabag
service:
main:
ports:
http:
port: 80
probes:
startup:
spec:
initialDelaySeconds: 60
timeoutSeconds: 1
## This means it has a maximum of 5*30=150 seconds to start up before it fails
periodSeconds: 30
failureThreshold: 30
...