Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion controlplane/rosa/api/v1beta2/rosacontrolplane_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const (
Private RosaEndpointAccessType = "Private"
)

// VersionGateAckType specifies the version gate acknowledgement.
// VersionGateAckType specifies the version gate acknowledgment.
type VersionGateAckType string

const (
Expand Down
2 changes: 1 addition & 1 deletion docs/book/src/topics/rosa/upgrades.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.

Expand Down
2 changes: 1 addition & 1 deletion pkg/rosa/versions.go
Original file line number Diff line number Diff line change
Expand Up @@ -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())
}
Expand Down
Loading