1
0
mirror of https://github.com/openshift/installer.git synced 2026-02-05 15:47:14 +01:00
W. Trevor King e76b2ab2e2 */BUILD.bazel: Remove leftover Bazel files
These escaped the great purge of 0c6d53b7 (*: remove bazel,
2018-09-24, #342).  kubernetes/BUILD.bazel snuck in with 70ea0e81
(tests/smoke/vendor: switch from glide to dep, 2018-09-28, #380), and
tectonic/BUILD.bazel snuck in with e2d9fd30 (manifests: make tectonic/
flat dir, 2018-09-25, #330).  I'd guess both were due to rebases from
commits originally made before #342 landed.
2018-10-19 22:29:28 -07:00
2018-10-05 09:59:29 -07:00
2016-08-09 13:19:44 -07:00
2014-01-19 12:25:11 -08:00
2017-02-10 09:36:49 -08:00
2018-10-06 06:00:20 +02:00
2018-04-23 08:50:17 -04:00

Openshift Installer

Supported Platforms

Quick Start

First, install all build dependencies.

After cloning this repository, the installer binary will need to be built by running the following:

hack/build.sh

This will create bin/openshift-install. This binary can then be invoked to create an OpenShift cluster, like so:

bin/openshift-install cluster

The installer requires the terraform binary either alongside openshift-install or in $PATH. If you don't have terraform, run the following to create bin/terraform:

hack/get-terraform.sh

The installer will show a series of prompts for user-specific information (e.g. admin password) and use reasonable defaults for everything else. In non-interactive contexts, prompts can be bypassed by providing appropriately-named environment variables. Refer to the user documentation for more information.

Connect to the cluster

Console

Shortly after the cluster command completes, the OpenShift console will come up at https://${OPENSHIFT_INSTALL_CLUSTER_NAME}-api.${OPENSHIFT_INSTALL_BASE_DOMAIN}:6443/console/. You may need to ignore a certificate warning if you did not configure a certificate authority known to your browser. Log in using the admin credentials you configured when creating the cluster.

Kubeconfig

You can also use the admin kubeconfig which openshift-install cluster placed under --dir (which defaults to .) in auth/kubeconfig. If you launched the cluster with openshift-install --dir "${DIR}" cluster, you can use:

export KUBECONFIG="${DIR}/auth/kubeconfig"

Cleanup

Destroy the cluster and release associated resources with:

openshift-install destroy cluster
Description
Install an OpenShift cluster
Readme 1.2 GiB
Languages
Go 85.1%
HCL 10.8%
Shell 2.8%
Python 1.2%