fix: force images pull and change default ports

This commit is contained in:
Clément Désiles
2026-02-14 21:02:51 +01:00
parent 23c7da84bb
commit 6393ff6ed3
7 changed files with 35 additions and 4 deletions
+10
View File
@@ -86,6 +86,16 @@
loop:
- "{{ immich_upload_location }}"
- name: Pull Immich container images
ansible.builtin.command: "podman pull {{ item }}"
loop:
- "{{ immich_server_image }}:{{ immich_version }}"
- "{{ immich_ml_image }}:{{ immich_version }}"
changed_when: pull_result.stdout is search('Writing manifest')
register: pull_result
become: false
become_user: "{{ ansible_user }}"
- name: Deploy Kubernetes YAML for Immich
ansible.builtin.template:
src: immich.yaml.j2