summaryrefslogtreecommitdiff
path: root/roles/nextcloud
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2020-02-17 23:37:58 +0100
committerChristian Pointner <equinox@spreadspace.org>2020-02-17 23:37:58 +0100
commitb5e6ee20a29808bc2d2c03d2548f84a2174f3971 (patch)
treec16324cba43cb25ef1fbc4004ffb020c839c7e22 /roles/nextcloud
parentelevate-festival: added test bridges (diff)
fix TODO
Diffstat (limited to 'roles/nextcloud')
-rwxr-xr-xroles/nextcloud/templates/nextcloud-occ.j24
-rw-r--r--roles/nextcloud/templates/run-cron.sh.j25
2 files changed, 6 insertions, 3 deletions
diff --git a/roles/nextcloud/templates/nextcloud-occ.j2 b/roles/nextcloud/templates/nextcloud-occ.j2
index 91977ccd..a79c5335 100755
--- a/roles/nextcloud/templates/nextcloud-occ.j2
+++ b/roles/nextcloud/templates/nextcloud-occ.j2
@@ -9,7 +9,9 @@ if [ -z "$INST_NAME" ]; then
fi
set -eu
-export CONTAINER_RUNTIME_ENDPOINT="unix:///run/containerd/containerd.sock"
+{% if kubernetes_cri_socket is defined %}
+export CONTAINER_RUNTIME_ENDPOINT="{{ kubernetes_cri_socket }}"
+{% endif %}
pod_id=$(crictl pods -q --state ready --name "$INST_NAME-{{ ansible_nodename }}")
if [ -z "$pod_id" ]; then echo "Pod not found"; exit 1; fi
diff --git a/roles/nextcloud/templates/run-cron.sh.j2 b/roles/nextcloud/templates/run-cron.sh.j2
index a0c986ae..9936bad1 100644
--- a/roles/nextcloud/templates/run-cron.sh.j2
+++ b/roles/nextcloud/templates/run-cron.sh.j2
@@ -1,7 +1,8 @@
#!/bin/bash
-## TODO: what about other container runtimes???
-export CONTAINER_RUNTIME_ENDPOINT=unix:///run/containerd/containerd.sock
+{% if kubernetes_cri_socket is defined %}
+export CONTAINER_RUNTIME_ENDPOINT="{{ kubernetes_cri_socket }}"
+{% endif %}
POD_NAME="{{ item }}-$(hostname)"
POD_ID=$(crictl pods --name "$POD_NAME" --state ready -q)