diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2017-02-17 17:06:18 +0100 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2017-02-17 17:06:29 +0100 |
commit | e283cd5cbd3d1ad9427d6adb7f7f1504c7b066fe (patch) | |
tree | 39b81f1a4434fba310b4ada99542c906262dc0e2 /playbooks | |
parent | f39408aada18ab6cf6f87d00f11ddeb3984816b9 (diff) | |
download | openshift-e283cd5cbd3d1ad9427d6adb7f7f1504c7b066fe.tar.gz openshift-e283cd5cbd3d1ad9427d6adb7f7f1504c7b066fe.tar.bz2 openshift-e283cd5cbd3d1ad9427d6adb7f7f1504c7b066fe.tar.xz openshift-e283cd5cbd3d1ad9427d6adb7f7f1504c7b066fe.zip |
post_control_plane.yml: don't fail on grep
grep returns rc != 0 if the text is not found, the next rule assumes
that. Do not fail on the check when the line is not found.
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'playbooks')
-rw-r--r-- | playbooks/common/openshift-cluster/upgrades/post_control_plane.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/playbooks/common/openshift-cluster/upgrades/post_control_plane.yml b/playbooks/common/openshift-cluster/upgrades/post_control_plane.yml index 70f4abdf9..01c1e0c15 100644 --- a/playbooks/common/openshift-cluster/upgrades/post_control_plane.yml +++ b/playbooks/common/openshift-cluster/upgrades/post_control_plane.yml @@ -87,6 +87,7 @@ register: grep_plugin_order_override when: openshift.common.version_gte_3_3_or_1_3 | bool changed_when: false + failed_when: false - name: Warn if pluginOrderOverride is in use in master-config.yaml debug: |