Browse Source

Merge pull request #8461 from mgugino-upstream-stage/containerized-cleanup

Remove old openshift binaries from containerized upgragde
OpenShift Merge Robot 6 years ago
parent
commit
0ffb616c01
1 changed files with 11 additions and 0 deletions
  1. 11 0
      roles/openshift_cli/tasks/main.yml

+ 11 - 0
roles/openshift_cli/tasks/main.yml

@@ -30,3 +30,14 @@
   when: not openshift_is_atomic | bool
   register: result
   until: result is succeeded
+
+# TODO(michaelgugino) Remove in 3.11.
+- name: Ensure binaries from containerized deployments are cleaned up.
+  file:
+    path: "{{ item }}"
+    state: absent
+  with_items:
+  - /usr/local/bin/oc
+  - /usr/local/bin/openshift
+  - /usr/local/bin/kubectl
+  when: not openshift_is_atomic