Compare commits

...

2 Commits

Author SHA1 Message Date
Rob Watson 47bc5c3fce gitea: Add CM labels 2023-01-12 07:05:22 +01:00
Rob Watson 8e8ff2a889 invidious: Fix flaky init container 2023-01-12 07:05:10 +01:00
3 changed files with 21 additions and 1 deletions

View File

@ -27,7 +27,9 @@ spec:
volumeMounts:
- mountPath: /data
name: data
command: ["git", "clone", "--depth", "1", "https://github.com/iv-org/invidious.git", "/data/repo"]
- mountPath: /scripts
name: scripts
command: ["/bin/sh", "/scripts/init.sh"]
- image: jbergknoff/postgresql-client:latest
imagePullPolicy: IfNotPresent
name: init-invidious-db
@ -117,3 +119,6 @@ spec:
- name: config
configMap:
name: invidious-config
- name: scripts
configMap:
name: invidious-scripts

View File

@ -0,0 +1,6 @@
if [ -d /data/repo ]; then
cd /data/repo
git pull
else
git clone --depth 1 https://github.com/iv-org/invidious.git /data/repo
fi

View File

@ -108,6 +108,15 @@ configMapGenerator:
files:
- init-directory-structure.sh=gitea-init-directory-structure.sh
- setup.sh=gitea-setup.sh
options:
labels:
app: gitea
- name: invidious-scripts
files:
- init.sh=invidious-init.sh
options:
labels:
app: invidious
secretGenerator:
- name: aws-do-external-dns-credentials