ansible-role-k8s/tasks/start.yml
2024-04-27 01:33:23 +00:00

9 lines
215 B
YAML

---
# handlers dont execute in time so we include this as a task
- name: enable "{{ k8s_type }}" service
ansible.builtin.systemd:
name: "{{ k8s_type }}-{{ node_type }}"
state: restarted
enabled: true