Maybe this version
This commit is contained in:
parent
6491b5f050
commit
109e483572
2 changed files with 47 additions and 1 deletions
|
@ -54,4 +54,4 @@ helmApps:
|
||||||
namespace: nextcloud
|
namespace: nextcloud
|
||||||
repoURL: https://nextcloud.github.io/helm/
|
repoURL: https://nextcloud.github.io/helm/
|
||||||
chart: nextcloud
|
chart: nextcloud
|
||||||
revision: 3.4.4
|
revision: 3.5.0
|
||||||
|
|
46
argo/wallabag/values.yaml
Normal file
46
argo/wallabag/values.yaml
Normal 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
|
||||||
|
...
|
Loading…
Reference in a new issue