am I right that kubernetes's `.tranformations: []`...
# general
b
am I right that kubernetes's
.tranformations: []
doesn't allow resource to be removed from plan?
found a workaround:
Copy code
tranformations: [
             (o: any) => {
                o.apiVersion = "v1";
                o.kind = "List";
                o.items = [];
            },
]
c
@best-xylophone-83824 unfortunately that’s about the best you can do but we will eventually fix this.