chore: add task to remove images on remote

This commit is contained in:
Pallav Vasa
2025-05-17 18:41:11 +00:00
parent 77435d3748
commit bc3db0abae

13
.vscode/tasks.json vendored
View File

@ -86,6 +86,13 @@
"problemMatcher": [],
"detail": "run podman rm $args on remote"
},
{
"label": "GitOps: Remove workspace image",
"type": "shell",
"command": ".bin/gitops remove ${input:images}",
"problemMatcher": [],
"detail": "run podman rmi $args on remote"
},
{
"label": "Cleanup worktree",
"type": "shell",
@ -101,6 +108,12 @@
"description": "Pick a container",
"options": ["pallav", "palak", "param", "darshan"],
"default": "pallav"
},
{
"id": "images",
"type": "promptString",
"description": "space separated list of images",
"default": ""
}
]
}