Make sure the nomad agent is running on boot
Some checks failed
Ansible Linting / ansible-lint (push) Failing after 3s
Secops Linting and Safety Checks / checkov-scan-s3 (push) Failing after 15s

This commit is contained in:
shockrah 2025-05-10 14:58:19 -07:00
parent e03daa62e5
commit 5a1afb4a07

View File

@ -31,4 +31,9 @@
update_cache: true update_cache: true
- name: Install nomad package - name: Install nomad package
ansible.builtin.apt: ansible.builtin.apt:
pkg: nomad pkg: nomad
- name: Make sure the nomad service is available
ansible.builtin.systemd_service:
name: nomad
state: started
enabled: true