forked from jakub/ansible
21 lines
433 B
YAML
21 lines
433 B
YAML
# update_tozneberto.yml
|
|
|
|
---
|
|
- name: Update Tozneberto
|
|
hosts: localhost
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
- name: Trigger Portainer stack redeploy
|
|
ansible.builtin.uri:
|
|
url: "{{ portainer_tozneberto_webhook }}"
|
|
method: POST
|
|
status_code:
|
|
- 200
|
|
- 204
|
|
register: redeploy_result
|
|
|
|
- name: Show redeploy result
|
|
ansible.builtin.debug:
|
|
var: redeploy_result.status
|