diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-02-14 13:52:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-14 13:52:08 -0500 |
commit | dcbc04be7d1f621d1cf95168c8d1265279d04ed1 (patch) | |
tree | b5ceb3d12b098c75817e2984dc3417929ca24ad1 /roles/openshift_node_upgrade | |
parent | b61593976cedf3946ede5b6c5cc9bd80b0747cf3 (diff) | |
parent | 0b1c1c2c524bfb932ab0e15f63f464673c00e651 (diff) | |
download | openshift-dcbc04be7d1f621d1cf95168c8d1265279d04ed1.tar.gz openshift-dcbc04be7d1f621d1cf95168c8d1265279d04ed1.tar.bz2 openshift-dcbc04be7d1f621d1cf95168c8d1265279d04ed1.tar.xz openshift-dcbc04be7d1f621d1cf95168c8d1265279d04ed1.zip |
Merge pull request #3355 from tbielawa/idempotency_please_work
Idempotency please work
Diffstat (limited to 'roles/openshift_node_upgrade')
-rw-r--r-- | roles/openshift_node_upgrade/tasks/main.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/roles/openshift_node_upgrade/tasks/main.yml b/roles/openshift_node_upgrade/tasks/main.yml index b1d5f0e0f..609ca2a6e 100644 --- a/roles/openshift_node_upgrade/tasks/main.yml +++ b/roles/openshift_node_upgrade/tasks/main.yml @@ -75,3 +75,9 @@ # so containerized services should restart quickly as well. retries: 24 delay: 5 + # AUDIT:changed_when: `false` because we are only inspecting the + # state of the node, we aren't changing anything (we changed node + # service state in the previous task). You could say we shouldn't + # override this because something will be changing (the state of a + # service), but that should be part of the last task. + changed_when: false |