Trigger all secrets playbooks
Infrastructure / Check and run Ansbile playbooks (pull_request) Successful in 1m55s Details

This commit is contained in:
Gleb Koval 2024-03-29 15:47:31 +00:00
parent 20b72f085f
commit e2f116b54d
Signed by: cyclane
GPG Key ID: 15E168A8B332382C
4 changed files with 2 additions and 4 deletions

View File

@ -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

View File

@ -39,4 +39,4 @@
fstype: ext4
opts: rw,errors=remount-ro,x-systemd.growfs
state: mounted
become: true
become: true

View File

@ -5,6 +5,7 @@
- name: Wait for connection
ansible.builtin.wait_for_connection:
timeout: 300
- name: Install dependencies
ansible.builtin.apt:
update_cache: true

View File

@ -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: