OpenShift on Azure: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 11: Line 11:
* Azure Red Hat OpenShift requires a minimum of 40 cores. May need to [[Azure_Quota_Operations|increase the quota]].
* Azure Red Hat OpenShift requires a minimum of 40 cores. May need to [[Azure_Quota_Operations|increase the quota]].
==Procedure==
==Procedure==
===Create the Resource Group===
The resource group can be created from the console, and it will encapsulate resources required by, and dedicated to the OpenShift cluster.
===Create the Cluster===
<syntaxhighlight lang='bash'>
<syntaxhighlight lang='bash'>
SUBSCRIPTION_ID=...
SUBSCRIPTION_ID=...

Revision as of 21:50, 18 November 2020

External

Internal

Installation

Prerequisites

Procedure

Create the Resource Group

The resource group can be created from the console, and it will encapsulate resources required by, and dedicated to the OpenShift cluster.


Create the Cluster

SUBSCRIPTION_ID=...
LOCATION=eastus2
CLUSTER_GROUP=platform-cloud
RESOURCE_GROUP=${CLUSTER_GROUP}-01
CLUSTER_NAME=${CLUSTER_GROUP}-01
az account set --subscription ${SUBSCRIPTION_ID}

CLI Support

Azure CLI has an OpenShift extension, with subcommands aimed at managing Azure Red Hat OpenShift clusters.

az aro create|list|delete|list-credentials|show|update|wait

List OpenShift Clusters

az aro list