From 8eb9d6f38d93b63139624ff2bb0bbe398d8af022 Mon Sep 17 00:00:00 2001 From: Ireneusz Glownia Date: Wed, 21 Oct 2020 15:39:07 +0200 Subject: [PATCH] Document Azure supported images --- CHANGELOG-0.5.md | 1 + docs/home/HOWTO.md | 1 + docs/home/howto/CLUSTER.md | 29 +++++++++++++++++++++++++++++ 3 files changed, 31 insertions(+) diff --git a/CHANGELOG-0.5.md b/CHANGELOG-0.5.md index 9e89cd2e65..d2be9537b5 100644 --- a/CHANGELOG-0.5.md +++ b/CHANGELOG-0.5.md @@ -96,6 +96,7 @@ - [Stateless setup](/docs/home/howto/DATABASES.md#how-to-start-working-with-apache-ignite-stateless-setup) - [#831](https://github.com/epiphany-platform/epiphany/issues/831) - Build artifacts encryption (Kubernetes config) using ansible vault - [epicli asks for password](/docs/home/howto/SECURITY.md#how-to-run-epicli-with-password) +- [#1773](https://github.com/epiphany-platform/epiphany/issues/1773) - Document Azure supported images ### Changed diff --git a/docs/home/HOWTO.md b/docs/home/HOWTO.md index 37060228cd..70712acded 100644 --- a/docs/home/HOWTO.md +++ b/docs/home/HOWTO.md @@ -13,6 +13,7 @@ - [How to create an Epiphany cluster on existing infrastructure](./howto/CLUSTER.md#how-to-create-an-epiphany-cluster-on-existing-infrastructure) - [How to create an Epiphany cluster on existing airgapped infrastructure](./howto/CLUSTER.md#how-to-create-an-epiphany-cluster-on-existing-airgapped-infrastructure) - [How to create an Epiphany cluster on a cloud provider](./howto/CLUSTER.md#how-to-create-an-epiphany-cluster-on-a-cloud-provider) + - [Note for RHEL / CentOS Azure images](./howto/CLUSTER.md#note-for-rhel--centos-azure-images) - [How to delete an Epiphany cluster on a cloud provider](./howto/CLUSTER.md#how-to-delete-an-epiphany-cluster-on-a-cloud-provider) - [Single machine cluster](./howto/CLUSTER.md#single-machine-cluster) - [How to scale or cluster components](./howto/CLUSTER.md#how-to-scale-or-cluster-components) diff --git a/docs/home/howto/CLUSTER.md b/docs/home/howto/CLUSTER.md index d956d9469f..e1df554f99 100644 --- a/docs/home/howto/CLUSTER.md +++ b/docs/home/howto/CLUSTER.md @@ -288,6 +288,35 @@ To setup the cluster do the following steps from the provisioning machine: epicli apply -f newcluster.yml ``` +### Note for RHEL / CentOS Azure images + +For RHEL and CentOS, Epiphany currently supports only images with RAW partitioning and attached to standard RHEL repositories. For more details, refer to [Azure documentation](https://docs.microsoft.com/en-us/azure/virtual-machines/workloads/redhat/redhat-images#rhel-7-image-types). + +It means that actually for Azure Cloud Epiphany supports RHEL 7.6 - 7.7 and CentOS 7.6 - 7.8 versions (with RAW partitioning and attached to standard repositories). +List of supported images will be extended in next releases. + +Example config for RHEL: + +```yaml +kind: infrastructure/virtual-machine +specification: + storage_image_reference: + publisher: RedHat + offer: RHEL + sku: "7-RAW" + version: "7.7.2019090418" +``` +Example config for CentOS: +```yaml +kind: infrastructure/virtual-machine +specification: + storage_image_reference: + publisher: OpenLogic + offer: CentOS + sku: "7_8" + version: "7.8.2020100700" +``` + ## How to delete an Epiphany cluster on a cloud provider Epicli has a delete command to remove a cluster from a cloud provider (AWS, Azure). With Epicli run the following: