From 3ed0468ac0279fa4b6b970c2ec2824e2ed87cd9f Mon Sep 17 00:00:00 2001 From: rasswanth-s <43314053+rasswanth-s@users.noreply.github.com> Date: Tue, 28 May 2024 11:53:32 +0530 Subject: [PATCH] remove podman asset creation --- scripts/create_syftcli_config.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/create_syftcli_config.py b/scripts/create_syftcli_config.py index 547cd469aa6..255c23ec705 100644 --- a/scripts/create_syftcli_config.py +++ b/scripts/create_syftcli_config.py @@ -11,7 +11,6 @@ PREFIX_PATHS = { "k8s": "packages/grid/", "docker": "packages/grid/", - "podman": "packages/grid/podman/podman-kube/", } @@ -36,7 +35,7 @@ def create_tar(key): if __name__ == "__main__": - for config in ("docker", "podman"): + for config in ("docker",): print("Generating config for", config) create_tar(config) print()