We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e65ca39 commit 92b728eCopy full SHA for 92b728e
resourcescaler.go
@@ -286,7 +286,11 @@ func (s *AppResourceScaler) patchIguazioTenantAppServiceSets(ctx context.Context
286
"path": "/status/state",
287
"value": string(provisioningState),
288
})
289
-
+ jsonPatchMapper = append(jsonPatchMapper, map[string]interface{}{
290
+ "op": "add",
291
+ "path": "/spec/spec/tenants/0/spec/force_apply_all_mode",
292
+ "value": "disabled",
293
+ })
294
if err := s.waitForNoProvisioningInProcess(ctx); err != nil {
295
return errors.Wrap(err, "Failed waiting for IguazioTenantAppServiceSet to finish provisioning")
296
}
0 commit comments