# Happy path validation steps for RHSTOR-5734
The following new fields will be added to the storagecluster CR to override the defaults set in the cephcluster CR by rook.
- SkipUpgradeChecks
- WaitTimeoutForHealthyOSDInMinutes
- ContinueUpgradeAfterChecksEvenIfNotHealthy
- UpgradeOSDRequiresHealthyPGs
- OSDMaintenanceTimeout
By default, these fields will not be a part of storagecluster CR and will only be reflected once added/updated manually in the CR.
The fields can be set in the storagecluster CR by updating the spec as follows:
```
spec:
managedResources:
cephCluster:
skipUpgradeChecks: <value>
waitTimeoutForHealthyOSDInMinutes: <value>
continueUpgradeAfterChecksEvenIfNotHealthy: <value>
upgradeOSDRequiresHealthyPGs: <value>
osdMaintenanceTimeout: <value>
```
If either/all of the above fields are updated/added to the storagecluster CR, then the same should be updated in the cephCluster CR.