Skip to content

Commit 4ad5b0d

Browse files
author
Marcel Tyszkiewicz
committed
update doc gen
1 parent 53b6696 commit 4ad5b0d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

castai/resource_workload_scaling_policy.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,8 @@ func workloadScalingPolicyResourceLimitSchema() *schema.Resource {
473473
Description: fmt.Sprintf(`Defines limit strategy type.
474474
- %s - removes the resource limit even if it was specified in the workload spec.
475475
- %s - keep existing resource limits. While limits provide stability predictability, they may restrict workloads that need to temporarily burst beyond their allocation.
476-
- %s - used to calculate the resource limit. The final value is determined by multiplying the resource request by the specified factor.`, sdk.NOLIMIT, sdk.KEEPLIMITS, sdk.MULTIPLIER),
476+
- %s - used to calculate the resource limit. The final value is determined by multiplying the resource request by the specified factor.
477+
- %s - maintains the original ratio between requests and limits.`, sdk.NOLIMIT, sdk.KEEPLIMITS, sdk.MULTIPLIER, sdk.MAINTAINRATIO),
477478
ValidateDiagFunc: validation.ToDiagFunc(validation.StringInSlice([]string{string(sdk.MULTIPLIER), string(sdk.KEEPLIMITS), string(sdk.NOLIMIT)}, false)),
478479
},
479480
FieldLimitStrategyMultiplier: {

0 commit comments

Comments
 (0)