Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions modules/hcp-migrate-aws-single-to-multiarch.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,20 @@ linux/arm64 sha256:7b046404572ac96202d82b6cb029b421dddd40e88c73bbf35f602ffc130

. Transition the hosted cluster from single-architecture to multi-architecture:

.. Set the `multiArch` flag to `true` on your hosted cluster so that the hosted cluster can create both 64-bit AMD and 64-bit ARM node pools. Run the following command:
+
[source,terminal]
----
$ oc patch -n clusters hostedclusters/<hosted_cluster_name> -p '{"spec":{"platform":{"aws":{"multiArch":true}}}}' --type=merge
----

.. Confirm that the `multiArch` flag is set to `true` on your hosted cluster by running the following command:
+
[source,terminal]
----
$ oc get hostedcluster/<hosted_cluster_name> -o jsonpath='{.spec.platform.aws.multiArch}'
----

.. Set the multi-architecture {product-title} release image for the hosted cluster by ensuring that you use the same {product-title} version as the hosted cluster. Run the following command:
+
[source,terminal]
Expand Down