Skip to content

Commit 91f912c

Browse files
Merge pull request openshift#8795 from radeksm/master
no-jira: doc: minor update to installation doc
2 parents 207d8a1 + 61b9fd0 commit 91f912c

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

docs/dev/dependencies.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The following dependencies must be installed on your system before you can build
77
### Fedora, CentOS, RHEL
88

99
```sh
10-
sudo yum install golang-bin gcc-c++
10+
sudo dnf install golang-bin gcc-c++ zip
1111
```
1212

1313
If you need support for [libvirt destroy](libvirt/README.md#cleanup), you should also install `libvirt-devel`.
@@ -18,7 +18,7 @@ We follow a hard flattening approach; i.e. direct and inherited dependencies are
1818

1919
Dependencies are managed with [Go Modules](https://github.com/golang/go/wiki/Modules) but committed directly to the repository.
2020

21-
We require at least Go 1.20.
21+
We require at least Go 1.22.
2222

2323
- Add or update a dependency with `go get <dependency>@<version>`.
2424
- If you want to use a fork of a project or ensure that a dependency is not updated even when another dependency requires a newer version of it, manually add a [replace directive in the go.mod file](https://github.com/golang/go/wiki/Modules#when-should-i-use-the-replace-directive).

docs/dev/libvirt/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ repository to ensure you get a new enough version of qemu-kvm.
3737
On Fedora, CentOS/RHEL:
3838

3939
```sh
40-
sudo yum install libvirt-devel libvirt-daemon-kvm libvirt-client
40+
sudo dnf install libvirt-devel libvirt-daemon-kvm libvirt-client
4141
```
4242

4343
Then start libvirtd:

docs/user/openstack/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,11 @@ See the [OpenShift documentation](https://docs.openshift.com/container-platform/
132132

133133
### Bootstrap Node
134134

135-
The bootstrap node is a temporary node that is responsible for standing up the control plane on the masters. Only one bootstrap node will be stood up and it will be deprovisioned once the production control plane is ready. To do so, you need 1 instance, and 1 port. We recommend a flavor with a minimum of 16 GB RAM, 4 vCPUs, and 100 GB Disk (or Root Volume).
135+
The bootstrap node is a temporary node that is responsible for standing up the control plane on the masters. Only one bootstrap node will be stood up and it will be deprovisioned once the production control plane is ready. To do so, you need 1 instance, and 1 port. We recommend a flavor with a minimum of 16 GB RAM, 4 vCPUs, and 100 GB Disk (or Root Volume), it can be created using below command:
136+
137+
```sh
138+
openstack flavor create --ram 16384 --disk 128 --vcpu 4 okd-cluster
139+
```
136140

137141
### Image Registry Requirements
138142

0 commit comments

Comments
 (0)