-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clean up residual files after uninstallation.
- Loading branch information
cloudnativer
committed
Oct 9, 2021
1 parent
905d872
commit d1a175b
Showing
15 changed files
with
89 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
- name: 1.Delete {{software_home}} dir | ||
file: | ||
path: "{{software_home}}" | ||
state: absent | ||
ignore_errors: yes | ||
- name: 2.Delete cert file | ||
file: | ||
path: /etc/kubernetes | ||
state: absent | ||
ignore_errors: yes | ||
- name: 3.Delete kubectl file | ||
file: | ||
path: /usr/sbin/kubectl | ||
state: absent | ||
ignore_errors: yes | ||
- name: 4.Delete other bin file | ||
file: | ||
path: /usr/local/bin/{{item}} | ||
state: absent | ||
with_items: | ||
- bandwidth | ||
- dhcp | ||
- flannel | ||
- host-device | ||
- ipvlan | ||
- kubeadm | ||
- kubectl | ||
- kubectl-convert | ||
- kubelet | ||
- kube-proxy | ||
- macvlan | ||
- mounter | ||
- ptp | ||
- sbr | ||
- tuning | ||
- bridge | ||
- firewall | ||
- flanneld | ||
- host-local | ||
- ipvsinit.sh | ||
- loopback | ||
- mk-docker-opts.sh | ||
- portmap | ||
- resolvinit.sh | ||
- static | ||
- vlan | ||
ignore_errors: yes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,4 +35,3 @@ | |
state: absent | ||
ignore_errors: yes | ||
|
||
|