Skip to content

Commit

Permalink
Merge branch 'master' of github.com:openshift/training
Browse files Browse the repository at this point in the history
  • Loading branch information
thoraxe committed Mar 10, 2015
2 parents f3611e1 + 68defba commit a4f8e28
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions uninstall.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
## Uninstallation

During the beta period the preferred route of testing new beta code is to
redeploy the host machines. We understand that is not always an automated
process so if you simply want to prepare a previously used host to test another
beta release these are the steps that can be followed:

~~~
yum erase "*openshift*"
# Erase all knowledge of the openshift units
systemctl reset-failed
systemctl daemon-reload
# Remove data
rm -rf /var/lib/openshift/
rm /etc/sysconfig/*openshift*
# Remove all docker processes and images. This is not strictly required but
# it's best to start from a clean slate.
docker rm -f $(docker ps -a -q)
docker rmi $(docker images -q)
# Make sure you're running the latest RHEL 7.1 release
yum update
# This will clear the various virtual NICs
reboot
~~~

0 comments on commit a4f8e28

Please sign in to comment.