scuttle 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. # Copyright 2020 Dell Inc. or its subsidiaries. All Rights Reserved.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. #!/bin/bash
  15. kubeadm reset -f
  16. clush -ab "kubeadm reset -f"
  17. rm -rf /var/lib/etcd/*
  18. clush -ab "rm -rf /var/lib/etcd/*"
  19. rm -rf /var/lib/cni/
  20. clush -ab "rm -rf /var/lib/cni/"
  21. rm -rf /run/flannel/
  22. clush -ab "rm -rf /run/flannel/"
  23. rm -rf /etc/cni/
  24. clush -ab "rm -rf /etc/cni/"
  25. ifconfig cni0 down
  26. clush -ab "ifconfig cni0 down"
  27. ifconfig flannel.1 down
  28. clush -ab "ifconfig flannel.1 down"
  29. #brctl delbr flannel.1
  30. #clush -ab "brctl delbr flannel.1"
  31. clush -ab "brctl delbr cni0"