Skip to content

Commit 95b1622

Browse files
authored
Merge pull request #5238 from tinaafitz/fix_ack_typo
🐛 Fixed a few typos.
2 parents 3a646b3 + acaa964 commit 95b1622

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

controlplane/rosa/api/v1beta2/rosacontrolplane_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const (
3838
Private RosaEndpointAccessType = "Private"
3939
)
4040

41-
// VersionGateAckType specifies the version gate acknowledgement.
41+
// VersionGateAckType specifies the version gate acknowledgment.
4242
type VersionGateAckType string
4343

4444
const (

docs/book/src/topics/rosa/upgrades.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The Upgrade state can be checked in the conditions under `ROSAControlPlane.statu
1515

1616
## MachinePool Upgrade
1717

18-
Upgrading the OpenShift version of the MachinePools is supported by the provider and can be performed independetly from the Control Plane upgrades. To perform an upgrade you need to update the `version` in the spec of the `ROSAMachinePool`. Once the version has changed the provider will handle the upgrade for you.
18+
Upgrading the OpenShift version of the MachinePools is supported by the provider and can be performed independently from the Control Plane upgrades. To perform an upgrade you need to update the `version` in the spec of the `ROSAMachinePool`. Once the version has changed the provider will handle the upgrade for you.
1919

2020
The available upgrades versions for the `ROSAMachinePool` will be listed under `ROSAMachinePool.status.availableUpgrades`
2121

pkg/rosa/versions.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ func ScheduleControlPlaneUpgrade(client *ocm.Client, cluster *cmv1.Cluster, vers
5353
}
5454

5555
if !ack && len(versionGates) > 0 {
56-
errMess := "version gate acknowledgement required"
56+
errMess := "version gate acknowledgment required"
5757
for id := range versionGates {
5858
errMess = fmt.Sprintf(errMess+"\nid:%s\n %s\n %s\n %s\n", versionGates[id].ID(), versionGates[id].Description(), versionGates[id].DocumentationURL(), versionGates[id].WarningMessage())
5959
}

0 commit comments

Comments
 (0)