OpenShift Ansible allows for operators to execute custom tasks during specific operations through a system called hooks. Hooks allow operators to provide files defining tasks to execute before and/or after specific areas during installations and upgrades. This can be very helpful to validate or modify custom infrastructure when installing/upgrading OpenShift.
It is important to remember that when a hook fails the operation fails. This means a good hook can run multiple times and provide the same results. A great hook is idempotent.
Note: There is currently not a standard interface for hooks. In the future a standard interface will be defined and any hooks that existed previously will need to be updated to meet the new standard.
Hooks are defined in the hosts
inventory file under the nodes:vars
section.
Each hook should point to a yaml file which defines Ansible tasks. This file will be used as an include meaning that the file can not be a playbook but a set of tasks. Best practice suggests using absolute paths to the hook file to avoid any ambiguity.
[nodes:vars]
# <snip>
openshift_node_upgrade_pre_hook=/usr/share/custom/pre_node.yml
openshift_node_upgrade_hook=/usr/share/custom/node.yml
openshift_node_upgrade_post_hook=/usr/share/custom/post_node.yml
# <snip>
Hook files must be a yaml formatted file that defines a set of Ansible tasks. The file may not be a playbook.
---
# Trivial example forcing an operator to ack the start of an upgrade
# file=/usr/share/custom/pre_node.yml
- name: note the start of a node upgrade
debug:
msg: "Node upgrade of {{ inventory_hostname }} is about to start"
- name: require an operator agree to start an upgrade
pause:
prompt: "Hit enter to start the node upgrade"
delegate_to
or local_action
.delegate_to
or local_action
.delegate_to
or local_action
.