You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/ibi-create-standalone-config-iso.adoc
+18-11Lines changed: 18 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,7 @@
6
6
[id="create-standalone-config-iso_{context}"]
7
7
= Deploying a {sno} cluster using the openshift-install program
8
8
9
+
[role="_abstract"]
9
10
You can use the `openshift-install` program to configure and deploy a host that you preinstalled with an image-based installation. To configure the target host with site-specific details, you must create the following resources:
10
11
11
12
* The `install-config.yaml` installation manifest
@@ -30,16 +31,16 @@ For more information about the specifications for the `image-based-config.yaml`
30
31
+
31
32
[source,terminal]
32
33
----
33
-
$ mkdir ibi-config-iso-workdir <1>
34
+
$ mkdir <working_directory>
34
35
----
35
-
<1> Replace `ibi-config-iso-workdir` with the name of your working directory.
36
+
+
37
+
where `<working_directory>` is the name of your working directory, for example `ibi-config-iso-workdir`.
36
38
37
39
. Create the installation manifest:
38
40
39
-
.. Create a YAML file that defines the `install-config` manifest:
41
+
.. Create a YAML file that defines the `install-config` manifest, as in the following example:
40
42
+
41
43
--
42
-
.Example `install-config.yaml` file
43
44
[source,yaml]
44
45
----
45
46
apiVersion: v1
@@ -57,7 +58,7 @@ controlPlane:
57
58
name: master
58
59
replicas: 1
59
60
networking:
60
-
machineNetwork: <1>
61
+
machineNetwork:
61
62
- cidr: 192.168.200.0/24
62
63
#- cidr: fd01::/64
63
64
platform:
@@ -67,7 +68,8 @@ cpuPartitioningMode: "AllNodes"
67
68
pullSecret: '{"auths":{"<your_pull_secret>"}}}'
68
69
sshKey: 'ssh-rsa <your_ssh_pub_key>'
69
70
----
70
-
<1> For dual-stack networking, you can specify both IPv4 and IPv6 CIDRs using a list format. The first CIDR in the list is the primary address family and must match the primary address family of the seed cluster.
71
+
+
72
+
For dual-stack networking, you can specify both IPv4 and IPv6 CIDRs using a list format in the `machineNetwork` field. The first CIDR in the list is the primary address family and must match the primary address family of the seed cluster.
71
73
72
74
[IMPORTANT]
73
75
====
@@ -87,7 +89,8 @@ If your cluster deployment requires a proxy configuration, you must do the follo
Copy file name to clipboardExpand all lines: modules/ibi-extra-manifests-standalone.adoc
+3-6Lines changed: 3 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,20 +6,17 @@
6
6
[id="ibi-extra-manifest-standalone_{context}"]
7
7
= Configuring resources for extra manifests
8
8
9
+
[role="_abstract"]
9
10
You can optionally define additional resources in an image-based deployment for {sno} clusters.
10
11
11
12
Create the additional resources in an `extra-manifests` folder in the same working directory that has the `install-config.yaml` and `image-based-config.yaml` manifests.
12
13
13
14
[NOTE]
14
15
====
15
-
Filenames for additional resources in the `extra-manifests` directory must not exceed 30 characters. Longer filenames might cause deployment failures.
16
+
Filenames for additional resources in the `extra-manifests` directory must not exceed 30 characters. Longer filenames might cause deployment failures.
16
17
====
17
18
18
-
== Creating a resource in the extra-manifests folder
19
-
20
-
You can create a resource in the `extra-manifests` folder of your working directory to add extra manifests to the image-based deployment for {sno} clusters.
21
-
22
-
The following example adds an single-root I/O virtualization (SR-IOV) network to the deployment.
19
+
The following example shows how to create a resource in the `extra-manifests` folder of your working directory to add an single-root I/O virtualization (SR-IOV) network to the deployment.
= Reference specifications for the image-based-config.yaml manifest
8
8
9
+
[role="_abstract"]
9
10
The following content describes the specifications for the `image-based-config.yaml` manifest.
10
11
11
12
The `openshift-install` program uses the `image-based-config.yaml` manifest to create a site-specific configuration ISO for image-based deployments of {sno}.
0 commit comments