You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Allows the option to do a DryRun
Describe the solution you'd like
Option 1: c.DryRun(true).Apply() then c.DryRun(false)
Option 2: c.Apply(..., opt) where opt.DryRun = true
Describe alternatives you've considered
So far the DryRun have not been considered.
Proposal
Create an attribute of the client named DryRun. For every modification method (Apply, Create, Delete, Replace) if the client has the DryRun attribute set to true, the helper should call DryRun(true). Example:
Additional context
This may be an option to validate if the resources to visit are valid to apply, delete, create or replace. Optionally, it may be an option to get YAML or JSON representation of a resource.
References
None
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Allows the option to do a DryRun
Describe the solution you'd like
Option 1:
c.DryRun(true).Apply()
thenc.DryRun(false)
Option 2:
c.Apply(..., opt)
whereopt.DryRun = true
Describe alternatives you've considered
So far the DryRun have not been considered.
Proposal
Create an attribute of the client named
DryRun
. For every modification method (Apply
,Create
,Delete
,Replace
) if the client has the DryRun attribute set to true, the helper should callDryRun(true)
. Example:Additional context
This may be an option to validate if the resources to visit are valid to apply, delete, create or replace. Optionally, it may be an option to get YAML or JSON representation of a resource.
References
None
The text was updated successfully, but these errors were encountered: