https://github.com/frobware/openshift-upi-install-scripts
Install scripts, wrapper and helpers for installing OpenShift using User Provided Infrastructure
https://github.com/frobware/openshift-upi-install-scripts
Last synced: about 1 year ago
JSON representation
Install scripts, wrapper and helpers for installing OpenShift using User Provided Infrastructure
- Host: GitHub
- URL: https://github.com/frobware/openshift-upi-install-scripts
- Owner: frobware
- Created: 2019-11-18T14:41:31.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-20T12:20:38.000Z (over 6 years ago)
- Last Synced: 2025-02-24T07:38:28.598Z (about 1 year ago)
- Language: Shell
- Size: 32.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Scripts to standup a UPI-based OpenShift cluster (on GCP)
## Prerequisites
This relies on files from the openshift installer repo:
$ git submodule update --init
# Usage
Find a [nightly][https://openshift-release.svc.ci.openshift.org/] that
is green, download the installer, extract and make sure that the
`openshift-install` binary exists.
```sh
mkdir 4.3.0-0.nightly-2019-11-18-062034
cd 4.3.0-0.nightly-2019-11-18-062034
wget https://openshift-release-artifacts.svc.ci.openshift.org/4.3.0-0.nightly-2019-11-18-062034/openshift-install-linux-4.3.0-0.nightly-2019-11-18-062034.tar.gz
tar xf openshift-install-linux-4.3.0-0.nightly-2019-11-18-062034.tar.gz
```
```
# Create the cluster
../bin/create.sh
```
```
# Once done destroy the cluster
../bin/destroy.sh
```