Skip to content

Commit 589581b

Browse files
committed
updates
1 parent a67e3b7 commit 589581b

File tree

4 files changed

+8
-28
lines changed

4 files changed

+8
-28
lines changed

lib/docker-base.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ then
1111
then
1212
$SUDO yum update >/dev/null 2>&1
1313
$SUDO yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo >/dev/null 2>&1
14-
$SUDO yum install docker-ce -y >/dev/null 2>&1
14+
$SUDO yum install docker-ce -y
1515
# $SUDO yum check-update
1616
# $SUDO curl -fsSL https://get.docker.com/ | sh >/dev/null 2>&1
1717
else

lib/yum-centos-install.sh

+5-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@ then
1111
systemctl restart NetworkManager >/dev/null 2>&1
1212

1313
# install pip
14-
yum install epel-release -y >/dev/null 2>&1
15-
yum install python36 python36-pip python36-devel -y >/dev/null 2>&1
16-
yum install jq -y >/dev/null 2>&1
14+
yum install python2-pip python3-pip subversion -y >/dev/null 2>&1
15+
16+
#yum install epel-release -y >/dev/null 2>&1
17+
#yum install python36 python36-pip python36-devel -y >/dev/null 2>&1
18+
#yum install jq -y >/dev/null 2>&1
1719

1820
if [ "$SETUP_TYPE" == "k8-dev" ]
1921
then

openshift-installer4.0/centos/SetUpOrigin.sh

-22
Original file line numberDiff line numberDiff line change
@@ -60,28 +60,6 @@ echo " ... ... Installing Base Software"
6060
source $CONFIG_HOME/../../lib/yum-rhel-4.sh
6161
echo " ... ... Installing Go-$GOVERSION"
6262
source $CONFIG_HOME/../../lib/install-go.sh
63-
#echo " ... ... Installing etcd-$ETCD_VER"
64-
#source $CONFIG_HOME/../../lib/install-etcd.sh
65-
echo " ... ... Installing Docker-$DOCKERVER"
66-
source $CONFIG_HOME/../../lib/docker-base.sh
67-
68-
echo ""
69-
echo "................................."
70-
echo " Configuring Docker"
71-
echo "................................."
72-
#if [ "$APP_TYPE" == "origin" ] && [ "$HOSTENV" == "rhel" ]
73-
#then
74-
# source $CONFIG_HOME/../../lib/docker-registry.sh
75-
#fi
76-
source $CONFIG_HOME/../../lib/docker-restart.sh
77-
78-
79-
# Clone Repos
80-
echo "................................."
81-
echo " Cloning Repos"
82-
echo "................................."
83-
source $CONFIG_HOME/../../lib/clone-repos.sh
84-
echo ""
8563

8664
# Create Profiles
8765
echo "................................."

openshift-installer4.0/centos/setupvm.config

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,12 @@ WORKER_COUNT=3
5757
ROOTSIZE=500
5858
ROOTIOPS=4000
5959
ROOTTYPE=io1
60-
MACHINETYPE=c5.9xlarge
60+
#MACHINETYPE=c5.9xlarge
6161
# Other Vars
6262
CLUSTER_NAME=screeley-c1
6363
6464
INSTALL_PASSWORD=changeme
65-
SSHPATH=/home/ec2-user/.ssh/id_rsa.pub
65+
SSHPATH=/home/centos/.ssh/id_rsa.pub
6666
PULLSECRETPATH=/root/pullsecret.json
6767
#-------------------------------------
6868

0 commit comments

Comments
 (0)