From 109e483572895c9a88d7e905151c80b8e58fec05 Mon Sep 17 00:00:00 2001 From: Amarpreet Minhas Date: Mon, 10 Jul 2023 22:19:14 +0000 Subject: [PATCH] Maybe this version --- argo/apps/values.yaml | 2 +- argo/wallabag/values.yaml | 46 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 argo/wallabag/values.yaml diff --git a/argo/apps/values.yaml b/argo/apps/values.yaml index e60cbcb..3e6da3a 100644 --- a/argo/apps/values.yaml +++ b/argo/apps/values.yaml @@ -54,4 +54,4 @@ helmApps: namespace: nextcloud repoURL: https://nextcloud.github.io/helm/ chart: nextcloud - revision: 3.4.4 + revision: 3.5.0 diff --git a/argo/wallabag/values.yaml b/argo/wallabag/values.yaml new file mode 100644 index 0000000..8aae572 --- /dev/null +++ b/argo/wallabag/values.yaml @@ -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 +...