From 6a485dcc7065f048172e89e405068e6a5c1479b7 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Wed, 13 Jul 2022 22:07:12 +0200 Subject: add apps/pigallery2 --- roles/apps/pigallery2/tasks/main.yml | 79 ++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 roles/apps/pigallery2/tasks/main.yml (limited to 'roles/apps/pigallery2/tasks/main.yml') diff --git a/roles/apps/pigallery2/tasks/main.yml b/roles/apps/pigallery2/tasks/main.yml new file mode 100644 index 00000000..f3a3acbc --- /dev/null +++ b/roles/apps/pigallery2/tasks/main.yml @@ -0,0 +1,79 @@ +--- +- name: create zfs datasets + when: pigallery2_zfs is defined + block: + - name: create zfs base dataset + zfs: + name: "{{ pigallery2_zfs.pool }}/{{ pigallery2_zfs.name }}" + state: present + extra_zfs_properties: "{{ pigallery2_zfs.properties | dehumanize_zfs_properties | default(omit) }}" + + - name: create zfs volumes for instances + loop: "{{ pigallery2_instances | dict2items }}" + loop_control: + label: "{{ item.key }} ({{ (item.value.zfs_properties | default({})).items() | map('join', '=') | join(', ') }})" + zfs: + name: "{{ pigallery2_zfs.pool }}/{{ pigallery2_zfs.name }}/{{ item.key }}" + state: present + extra_zfs_properties: "{{ item.value.zfs_properties | dehumanize_zfs_properties | default(omit) }}" + + - name: configure pigallery2 base bath + set_fact: + pigallery2_base_path: "{{ (zfs_pools[pigallery2_zfs.pool].mountpoint, pigallery2_zfs.name) | path_join }}" + + +- name: add group for pigallery2 app + group: + name: pigallery2 + gid: "{{ pigallery2_app_gid }}" + +- name: add user for pigallery2 app + user: + name: pigallery2 + uid: "{{ pigallery2_app_uid }}" + group: pigallery2 + password: "!" + +- name: create instance subdirectories + loop: "{{ pigallery2_instances | product(['config', 'db', 'tmp']) | list }}" + loop_control: + label: "{{ item[0] }}/{{ item[1] }}" + file: + path: "{{ pigallery2_base_path }}/{{ item[0] }}/{{ item[1] }}" + state: directory + owner: pigallery2 + group: pigallery2 + mode: "700" + + +- name: install pod manifest + loop: "{{ pigallery2_instances | dict2items }}" + loop_control: + label: "{{ item.key }}" + vars: + kubernetes_standalone_pod: + name: "pigallery2-{{ item.key }}" + spec: "{{ lookup('template', 'pod-spec.yml.j2') }}" + mode: "0600" + include_role: + name: kubernetes/standalone/pod + + +- name: configure nginx vhost + loop: "{{ pigallery2_instances | dict2items }}" + loop_control: + label: "{{ item.key }}" + vars: + nginx_vhost: + name: "pigallery2-{{ item.key }}" + template: generic-proxy-no-buffering-with-acme + acme: true + hostnames: + - "{{ item.value.hostname }}" + locations: + '/': + proxy_pass: "http://127.0.0.1:{{ item.value.port }}" + extra_directives: |- + client_max_body_size 0; + include_role: + name: nginx/vhost -- cgit v1.2.3