Skip to content

Commit a019046

Browse files
committed
OSDOCS-4032: Agent based installer on ARM
1 parent fbba9e7 commit a019046

File tree

2 files changed

+13
-11
lines changed

2 files changed

+13
-11
lines changed

modules/installing-ocp-agent.adoc

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -51,38 +51,39 @@ cat << EOF > ./my-cluster/install-config.yaml
5151
apiVersion: v1
5252
baseDomain: test.example.com
5353
compute:
54-
- architecture: amd64
54+
architecture: amd64 <1>
5555
hyperthreading: Enabled
5656
name: worker
5757
replicas: 0
5858
controlPlane:
59-
architecture: amd64
59+
architecture: amd64
6060
hyperthreading: Enabled
6161
name: master
6262
replicas: 1
6363
metadata:
64-
name: sno-cluster <1>
64+
name: sno-cluster <2>
6565
networking:
6666
clusterNetwork:
6767
- cidr: 10.128.0.0/14
6868
hostPrefix: 23
6969
machineNetwork:
7070
- cidr: 192.168.111.0/16
71-
networkType: OVNKubernetes <2>
71+
networkType: OVNKubernetes <3>
7272
serviceNetwork:
7373
- 172.30.0.0/16
7474
platform:
7575
none: {}
76-
pullSecret: '<pull_secret>' <3>
76+
pullSecret: '<pull_secret>' <4>
7777
sshKey: |
78-
'<ssh_pub_key>' <4>
78+
'<ssh_pub_key>' <5>
7979
EOF
8080
----
8181
+
82-
<1> Required.
83-
<2> The cluster network plugin to install. The supported values are `OVNKubernetes` and `OpenShiftSDN`. The default value is `OVNKubernetes`.
84-
<3> Enter your pull secret.
85-
<4> Enter your ssh public key.
82+
<1> Specify the system architecture, valid values are `amd64` and `arm64`.
83+
<2> Required. Specify your cluster name.
84+
<3> State the cluster network plugin to install. The supported values are `OVNKubernetes` and `OpenShiftSDN`. The default value is `OVNKubernetes`.
85+
<4> Specify your pull secret.
86+
<5> Specify your ssh public key.
8687

8788
+
8889
[NOTE]
@@ -180,7 +181,7 @@ $ openshift-install --dir <install_directory> agent create image
180181
+
181182
NOTE: Red Hat Enterprise Linux CoreOS (RHCOS) supports multipathing on the primary disk, allowing stronger resilience to hardware failure to achieve higher host availability. Multipathing is enabled by default in the agent ISO image, with a default `/etc/multipath.conf` configuration.
182183
183-
. Boot the `agent.x86_64.iso` image on the bare metal machines.
184+
. Boot the `agent.x86_64.iso` or `agent.aarch64.iso` image on the bare metal machines.
184185
185186
. Optional: To know when the bootstrap host (which is the rendezvous host) reboots, run the following command:
186187

modules/sample-ztp-custom-resources.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ spec:
8989
clusterRef:
9090
name: ostest
9191
namespace: cluster0
92+
cpuArchitecture: aarch64
9293
pullSecretRef:
9394
name: pull-secret
9495
sshAuthorizedKey: <YOUR_SSH_PUBLIC_KEY>

0 commit comments

Comments
 (0)