Skip to content

Commit 92b728e

Browse files
authored
IG-20925 - app services patch disable force_aplply_all_mode (#27)
1 parent e65ca39 commit 92b728e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

resourcescaler.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,11 @@ func (s *AppResourceScaler) patchIguazioTenantAppServiceSets(ctx context.Context
286286
"path": "/status/state",
287287
"value": string(provisioningState),
288288
})
289-
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+
})
290294
if err := s.waitForNoProvisioningInProcess(ctx); err != nil {
291295
return errors.Wrap(err, "Failed waiting for IguazioTenantAppServiceSet to finish provisioning")
292296
}

0 commit comments

Comments
 (0)