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

@ -32,3 +32,8 @@
- name: Install nomad package
ansible.builtin.apt:
pkg: nomad
- name: Make sure the nomad service is available
ansible.builtin.systemd_service:
name: nomad
state: started
enabled: true