Fix #50: Trigger all secrets playbooks (#51)
Infrastructure / Check and run Ansbile playbooks (push) Failing after 5m46s
Details
Infrastructure / Check and run Ansbile playbooks (push) Failing after 5m46s
Details
Keep forgetting this :/ Reviewed-on: #51
This commit is contained in:
parent
20b72f085f
commit
719640a98d
|
@ -104,7 +104,6 @@
|
|||
cores: 4
|
||||
memory: 4096
|
||||
cpu: x86-64-v3,flags=+spec-ctrl;+aes
|
||||
|
||||
- name: Retart VM
|
||||
community.general.proxmox_kvm:
|
||||
state: restarted
|
||||
|
|
|
@ -39,4 +39,4 @@
|
|||
fstype: ext4
|
||||
opts: rw,errors=remount-ro,x-systemd.growfs
|
||||
state: mounted
|
||||
become: true
|
||||
become: true
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
- name: Wait for connection
|
||||
ansible.builtin.wait_for_connection:
|
||||
timeout: 300
|
||||
|
||||
- name: Install dependencies
|
||||
ansible.builtin.apt:
|
||||
update_cache: true
|
||||
|
|
|
@ -21,7 +21,6 @@
|
|||
src: "./{{ app }}"
|
||||
dest: "{{ user.home }}"
|
||||
mode: "0744"
|
||||
|
||||
- name: Replace Encryption Key secret
|
||||
ansible.builtin.replace:
|
||||
path: "{{ user.home }}/{{ app }}/.env"
|
||||
|
@ -37,7 +36,6 @@
|
|||
path: "{{ user.home }}/{{ app }}/.env"
|
||||
regexp: "SMTP_PASSWORD_VALUE"
|
||||
replace: "{{ lookup('ansible.builtin.env', 'SMTP_PASSWORD') }}"
|
||||
|
||||
- name: Docker compose up -d
|
||||
ansible.builtin.command: docker compose up -d
|
||||
args:
|
||||
|
|
Loading…
Reference in New Issue