Skip to content

Instantly share code, notes, and snippets.

@LinuxlinkedBD
Created May 25, 2021 16:24
Show Gist options
  • Save LinuxlinkedBD/cb0aee6fc9562272fda2d59c2aa8c5cb to your computer and use it in GitHub Desktop.
Save LinuxlinkedBD/cb0aee6fc9562272fda2d59c2aa8c5cb to your computer and use it in GitHub Desktop.
How to install OpenShift Container Platform
If you need complete OpenShift setup, ping me on below contacts:
Telegram: linuxlinked
email: linuxlinked@gmail.com
WhatsApp: +8801720903155
Skype:live:.cid.c0dc316b9d727d5e
YouTube: https://youtu.be/xM4wEp03kG8
########################################################################################################################################
#!/bin/bash
sudo apt-get update
sudo apt update
sudo apt-get install software-properties-common
sudo apt update
sudo add-apt-repository ppa:git-core/ppa
sudo apt update
sudo apt -y install git
sudo apt update
sudo apt-get upgrade -y
sudo apt -y autoremove
sudo apt -y autoclean
sudo apt -y clean
sudo apt-get install docker.io -y
systemctl start docker
systemctl enable docker
systemctl status docker
oc cluster up --public-hostname=localhost
oc login -u system:admin
oc project default
oc status
@LinuxlinkedBD
Copy link
Author

Screenshot from 2021-05-24 13-28-17
Screenshot from 2021-05-24 13-28-18
Screenshot from 2021-05-24 23-59-39
Screenshot from 2021-05-25 00-00-05
Screenshot from 2021-05-25 00-00-26
Screenshot from 2021-05-25 01-09-48
Screenshot from 2021-05-25 01-10-07

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment