updates: python 3.12, ansible 13, ansible-vault 4, deps

This commit is contained in:
2025-11-25 11:14:38 -08:00
parent c318e25189
commit fd683a6c35
3 changed files with 358 additions and 299 deletions

View File

@@ -20,7 +20,7 @@
dest: "{{ current_stack_dest }}/{{ item.path | regex_replace('\\.j2$', '') }}"
mode: "644"
loop: "{{ query('community.general.filetree', current_stack_source) }}"
when: item.state == "file" and item.path | regex_search('\\.j2$')
when: item.state == "file" and (item.path | regex_search('\\.j2$')) is not none
- name: Generate {{ current_stack_name }} deployment from static files
copy:
@@ -28,7 +28,7 @@
dest: "{{ current_stack_dest }}/{{ item.path }}"
mode: "644"
loop: "{{ query('community.general.filetree', current_stack_source) }}"
when: item.state == "file" and not item.path | regex_search('\\.j2$')
when: item.state == "file" and (item.path | regex_search('\\.j2$')) is none
- name: Deploy docker-compose for {{ current_stack_name }}
community.docker.docker_compose_v2: