title | description | author | ms.author | ms.service | ms.topic | ms.date | keywords |
---|---|---|---|---|---|---|---|
Migrate from an Azure Red Hat OpenShift 3.11 to Azure Red Hat OpenShift 4 |
Migrate from an Azure Red Hat OpenShift 3.11 to Azure Red Hat OpenShift 4 |
sakthi-vetrivel |
suvetriv |
azure-redhat-openshift |
conceptual |
08/13/2020 |
migration, aro, openshift, red hat |
Azure Red Hat OpenShift on OpenShift 4 brings Kubernetes 1.16 on Red Hat Core OS, private clusters, bring your own virtual network support, and full cluster admin role. In addition, many new features are now available such as support for the operator framework, the Operator Hub, and OpenShift Service Mesh.
To successfully transition from Azure Red Hat OpenShift 3.11 to Azure Red Hat OpenShift 4, make sure to review the differences in storage, networking, logging, security, and monitoring.
In this article, we'll demonstrate how to migrate from an Azure Red Hat OpenShift 3.11 cluster to an Azure Red Hat 4 cluster.
Note
Red Hat OpenShift migration tools such as the Control Plane Migration Assistance Tool and the Cluster Application Migration Tool (CAM) cannot be used with Azure Red Hat OpenShift 3.11 clusters.
This article assumes you have an existing Azure Red Hat OpenShift 3.11 cluster.
First, create the Azure Red Hat OpenShift 4 cluster you would like to use as the target cluster. Here, we'll use the basic configuration. If you're interested in different settings, see the Create an Azure Red Hat OpenShift 4 Cluster tutorial.
Create a virtual network with two empty subnets for the master and worker nodes.
az network vnet create \
--resource-group $RESOURCEGROUP \
--name aro-vnet \
--address-prefixes 10.0.0.0/22
az network vnet subnet create \
--resource-group $RESOURCEGROUP \
--vnet-name aro-vnet \
--name master-subnet \
--address-prefixes 10.0.0.0/23 \
--service-endpoints Microsoft.ContainerRegistry
az network vnet subnet create \
--resource-group $RESOURCEGROUP \
--vnet-name aro-vnet \
--name worker-subnet \
--address-prefixes 10.0.2.0/23 \
--service-endpoints Microsoft.ContainerRegistry
Then, use the following command to create the cluster.
az aro create \
--resource-group $RESOURCEGROUP \
--name $CLUSTER \
--vnet aro-vnet \
--master-subnet master-subnet \
--worker-subnet worker-subnet \
# --domain foo.example.com # [OPTIONAL] custom domain
# --pull-secret @pull-secret.txt # [OPTIONAL]
For users to interact with Azure Red Hat OpenShift, they must first authenticate to the cluster. The authentication layer identifies the user associated with requests to the Azure Red Hat OpenShift API. The authorization layer then uses information about the requesting user to determine if the request is allowed.
When an Azure Red Hat OpenShift 4 cluster is created, a temporary administrative user is created. Connect to your cluster, add users and groups and configure the appropriate permissions for both.
Azure Red Hat OpenShift 4 uses a few different operators to set up the network in your cluster: Cluster Network Operator, DNS Operator, and the Ingress Operator. For more information on setting up networking in an Azure Red Hat OpenShift 4 cluster, see the Networking Diagram and Understanding Networking.
Azure Red Hat OpenShift 4 supports the following PersistentVolume plug-ins:
- AWS Elastic Block Store (EBS)
- Azure Disk
- Azure File
- GCE Persistent Disk
- HostPath
- iSCSI
- Local volume
- NFS
- Red Hat OpenShift Container Storage
For information on configuring these storage types, see Configuring persistent storage.
Azure Red Hat OpenShift 4 can build images from your source code, deploy them, and manage their lifecycle. To enable this, Azure Red Hat OpenShift provides 4 an internal, integrated container image registry that can be deployed in your Azure Red Hat OpenShift environment to locally manage images.
If you're using external registries such as Azure Container Registry, Red Hat Quay registries, or an authentication enabled Red Hat registry, follow steps to supply credentials to the cluster to allow the cluster to access the repositories.
Azure Red Hat OpenShift includes a pre-configured, pre-installed, and self-updating monitoring stack that is based on the Prometheus open source project and its wider eco-system. It provides monitoring of cluster components and includes a set of alerts to immediately notify the cluster administrator about any occurring problems and a set of Grafana dashboards. The cluster monitoring stack is only supported for monitoring Azure Red Hat OpenShift clusters. For more information, see Cluster monitoring for Azure Red Hat OpenShift.
If you have been using Azure Monitor for Containers for Azure Red Hat OpenShift 3.11, you can also enable Azure Monitor for Containers for Azure Red Hat OpenShift 4 clusters and continue using the same Log Analytics workspace.
If you're using Azure Traffic Manager, add endpoints to refer to your target cluster and prioritize these endpoints.
Once you have your target cluster properly configured for your workload, connect to your cluster and create the necessary applications, components, or services for your projects. Azure Red Hat OpenShift enables you to create these from Git, container images, the Red Hat Developer Catalog, a Dockerfile, a YAML/JSON definition, or by selecting a database service from the Catalog.
Once you've confirmed that your Azure Red Hat OpenShift 4 cluster is properly set up, delete your Azure Red Hat OpenShift 3.11 cluster.
az openshift delete --name $CLUSTER_NAME
--resource-group $RESOURCE_GROUP
[--no-wait]
[--subscription]
[--yes]
Check out Red Hat OpenShift documentation here.