diff --git a/controlplane/rosa/api/v1beta2/rosacontrolplane_types.go b/controlplane/rosa/api/v1beta2/rosacontrolplane_types.go index f14c59f781..03952da622 100644 --- a/controlplane/rosa/api/v1beta2/rosacontrolplane_types.go +++ b/controlplane/rosa/api/v1beta2/rosacontrolplane_types.go @@ -38,7 +38,7 @@ const ( Private RosaEndpointAccessType = "Private" ) -// VersionGateAckType specifies the version gate acknowledgement. +// VersionGateAckType specifies the version gate acknowledgment. type VersionGateAckType string const ( diff --git a/docs/book/src/topics/rosa/upgrades.md b/docs/book/src/topics/rosa/upgrades.md index bcf6c22ff7..915363bc71 100644 --- a/docs/book/src/topics/rosa/upgrades.md +++ b/docs/book/src/topics/rosa/upgrades.md @@ -8,7 +8,7 @@ The Upgrade state can be checked in the conditions under `ROSAControlPlane.statu ## MachinePool Upgrade -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. +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. The Upgrade state can be checked in the conditions under `ROSAMachinePool.status`. diff --git a/pkg/rosa/versions.go b/pkg/rosa/versions.go index 27136c8772..80fafd226a 100644 --- a/pkg/rosa/versions.go +++ b/pkg/rosa/versions.go @@ -53,7 +53,7 @@ func ScheduleControlPlaneUpgrade(client *ocm.Client, cluster *cmv1.Cluster, vers } if !ack && len(versionGates) > 0 { - errMess := "version gate acknowledgement required" + errMess := "version gate acknowledgment required" for id := range versionGates { 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()) }