From aa798535cdd76257ba2ec54a53bd9baf8a54a68a Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Thu, 17 Oct 2019 20:02:22 +0200 Subject: basic etherpad installation works now --- .../templates/pod-with-mariadb.yml.j2 | 57 ++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 roles/etherpad-lite/templates/pod-with-mariadb.yml.j2 (limited to 'roles/etherpad-lite/templates/pod-with-mariadb.yml.j2') diff --git a/roles/etherpad-lite/templates/pod-with-mariadb.yml.j2 b/roles/etherpad-lite/templates/pod-with-mariadb.yml.j2 new file mode 100644 index 00000000..0e0b6b8b --- /dev/null +++ b/roles/etherpad-lite/templates/pod-with-mariadb.yml.j2 @@ -0,0 +1,57 @@ +apiVersion: v1 +kind: Pod +metadata: + name: "etherpad-lite-{{ item.key }}" +spec: + securityContext: + allowPrivilegeEscalation: false + containers: + - name: etherpad-lite + image: etherpad/etherpad:{{ item.value.version }} + # securityContext: + # runAsUser: {{ etherpad_lite_app_uid }} + # runAsGroup: {{ etherpad_lite_app_gid }} + resources: + limits: + memory: "4Gi" + volumeMounts: + - name: config + mountPath: /opt/etherpad/settings.json + subPath: settings.json + readOnly: true + - name: config + mountPath: /opt/etherpad/credentials.json + subPath: credentials.json + readOnly: true + ports: + - containerPort: 9001 + hostPort: {{ item.value.port }} + - name: database + image: "mariadb:{{ item.value.database.version }}" + securityContext: + runAsUser: {{ etherpad_lite_db_uid }} + runAsGroup: {{ etherpad_lite_db_gid }} + resources: + limits: + memory: "4Gi" + env: + - name: MYSQL_RANDOM_ROOT_PASSWORD + value: "true" + - name: MYSQL_DATABASE + value: etherpad-lite + - name: MYSQL_USER + value: etherpad-lite + - name: MYSQL_PASSWORD + value: "{{ item.value.database.password }}" + volumeMounts: + - name: database + mountPath: /var/lib/mysql + volumes: + - name: config + hostPath: + path: "{{ etherpad_lite_base_path }}/{{ item.key }}/config/" + type: Directory + - name: database + hostPath: + path: "{{ etherpad_lite_base_path }}/{{ item.key }}/{{ item.value.database.type }}" + type: Directory -- cgit v1.2.3