Przeglądaj źródła

The uninstall playbook needs to remove /run/openshift-sdn

If this isn't removed lbr0 won't be recreated by the Node after the following
install.
Brenton Leanhardt 9 lat temu
rodzic
commit
af928b32bf
1 zmienionych plików z 6 dodań i 2 usunięć
  1. 6 2
      playbooks/adhoc/uninstall.yml

+ 6 - 2
playbooks/adhoc/uninstall.yml

@@ -140,10 +140,11 @@
 
     - file: path={{ item }} state=absent
       with_items:
+        - "~{{ ansible_ssh_user }}/.kube"
         - /etc/ansible/facts.d/openshift.fact
         - /etc/atomic-enterprise
-        - /etc/etcd
         - /etc/corosync
+        - /etc/etcd
         - /etc/openshift
         - /etc/openshift-sdn
         - /etc/origin
@@ -156,10 +157,13 @@
         - /etc/sysconfig/origin-master
         - /etc/sysconfig/origin-node
         - /root/.kube
-        - "~{{ ansible_ssh_user }}/.kube"
+        - /run/openshift-sdn
         - /usr/share/openshift/examples
         - /var/lib/atomic-enterprise
         - /var/lib/etcd
         - /var/lib/openshift
         - /var/lib/origin
         - /var/lib/pacemaker
+
+    - name: restart docker
+      service: name=docker state=restarted