hallowed-summer-55667
02/11/2025, 8:34 PMResourceTransforms =
{
async (args, _) =>
{
Console.WriteLine("Transforming resource");
if (args.Type.Contains("Deployment"))
{
return new ResourceTransformResult(
args.Args,
CustomResourceOptions.Merge((CustomResourceOptions)args.Options, new() { IgnoreChanges = ["spec.replicas"] })
);
}
return null;
}
}
But it never runs, the log is not appearing and the change is not happening.
Just want to know if the issue is me or there is some known bug, i didn't see anything about this anywhere online.echoing-dinner-19531
02/16/2025, 8:30 AM