diff options
author | Jan Chaloupka <jchaloup@redhat.com> | 2017-07-27 09:51:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-27 09:51:09 +0200 |
commit | 7a2eab51e45a7722f3eb51f96bd560e77725bc0b (patch) | |
tree | 95e353f8c7ba90e56a8338487b00754b99bff8ae /roles/openshift_node/handlers | |
parent | 0c89e862e8b2759753e61f7ddd4f743c4013f6ee (diff) | |
parent | 7fe9da4c0e4a5f16f69cacd6d21b848e620240c5 (diff) | |
download | openshift-7a2eab51e45a7722f3eb51f96bd560e77725bc0b.tar.gz openshift-7a2eab51e45a7722f3eb51f96bd560e77725bc0b.tar.bz2 openshift-7a2eab51e45a7722f3eb51f96bd560e77725bc0b.tar.xz openshift-7a2eab51e45a7722f3eb51f96bd560e77725bc0b.zip |
Merge pull request #4874 from ingvagabund/set-default-values
Sync all openshift.common.use_openshift_sdn uses in yaml files
Diffstat (limited to 'roles/openshift_node/handlers')
-rw-r--r-- | roles/openshift_node/handlers/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_node/handlers/main.yml b/roles/openshift_node/handlers/main.yml index 6b38da7f8..f2c45a4bd 100644 --- a/roles/openshift_node/handlers/main.yml +++ b/roles/openshift_node/handlers/main.yml @@ -3,7 +3,7 @@ systemd: name: openvswitch state: restarted - when: (not skip_node_svc_handlers | default(False) | bool) and not (ovs_service_status_changed | default(false) | bool) and openshift.common.use_openshift_sdn | bool + when: (not skip_node_svc_handlers | default(False) | bool) and not (ovs_service_status_changed | default(false) | bool) and openshift.common.use_openshift_sdn | default(true) | bool register: l_openshift_node_stop_openvswitch_result until: not l_openshift_node_stop_openvswitch_result | failed retries: 3 |