File tree Expand file tree Collapse file tree 4 files changed +23
-3
lines changed
Expand file tree Collapse file tree 4 files changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -106,4 +106,9 @@ workflows:
106106 requires :
107107 - ce-ubuntu
108108 tfvarsfile : terraform-icp-ce-rhel-example.tfvars
109+ - build :
110+ name : ee-rhel
111+ requires :
112+ - ce-rhel
113+ tfvarsfile : terraform-icp-ee-rhel-example.tfvars
109114 # Repeated as many times as there are configurations...
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ docker_install() {
7070 then
7171 # Figure out what we should name the file
7272 filename=" icp-docker.bin"
73- /usr/local/bin/aws s3 cp ${docker_installer} ${sourcedir} /${filename}
73+ /usr/local/bin/aws s3 cp ${docker_installer} ${sourcedir} /${filename} --no-progress
7474 package_file=" ${sourcedir} /${filename} "
7575 fi
7676
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ if [[ ! -z "${image_location}" ]]; then
6464 if [[ " ${image_location: 0: 2} " == " s3" ]]; then
6565 # stream it right out of s3 into docker
6666 logmsg " Copying binary package from ${image_location} ..."
67- ${awscli} s3 cp ${image_location} /tmp
67+ ${awscli} s3 cp ${image_location} /tmp --no-progress
6868
6969 logmsg " Loading docker images from /tmp/` basename ${image_location} ` ..."
7070 tar zxf /tmp/` basename ${image_location} ` -O | docker load | tee -a $logfile
@@ -103,7 +103,7 @@ instretval=$?
103103
104104# backup the config
105105logmsg " Backing up the config to the S3 bucket."
106- ${awscli} s3 sync /opt/ibm/cluster s3://${s3_config_bucket}
106+ ${awscli} s3 sync /opt/ibm/cluster s3://${s3_config_bucket} --no-progress
107107
108108logmsg " ~~~~~~~~ Completed ICP installation Code ~~~~~~~~"
109109# Ensure the script exits with the exit code of the ICP installer
Original file line number Diff line number Diff line change 1+ # # You must set a key file name to be able to ssh to any of the created VMs
2+ # key_name = "<name of your ssh key>"
3+
4+ image_location = " s3://icp-docker-tarball/ibm-cloud-private-x86_64-3.2.0.tar.gz"
5+
6+ ami = " rhel" # Use RHEL and supply docker package
7+ docker_package_location = " s3://icp-docker-binaries/icp-docker-18.03.1_x86_64.bin"
8+
9+ icp_inception_image = " ibmcom/icp-inception-amd64:3.2.0-ee"
10+
11+ # We add the bastion host so we can monitor the progress
12+ # during ICP Installation
13+ bastion = {
14+ nodes = " 1"
15+ }
You can’t perform that action at this time.
0 commit comments