This message was deleted.
# kubernetes
s
This message was deleted.
g
b
@gorgeous-egg-16927, thanks a lot, gonna test it now
Copy code
# Omit a resource from the Chart by transforming the specified resource definition to an empty List.
def omit_resource(obj, opts):
    if obj["kind"] == "Pod" and obj["metadata"]["name"] == "test":
        obj["apiVersion"] = "v1"
        obj["kind"] = "List"