Compare commits

...

2 Commits

Author SHA1 Message Date
bc3db0abae chore: add task to remove images on remote 2025-05-17 18:41:11 +00:00
77435d3748 chore: remove redundant tasks 2025-05-17 16:11:11 +00:00

37
.vscode/tasks.json vendored
View File

@ -40,22 +40,6 @@
"problemMatcher": [],
"detail": "Copy Containerfile to $HOME/"
},
{
"label": "GitOps(Update): ssh_router.sh",
"type": "shell",
"command": ".bin/gitops update ssh_router",
"group": "build",
"problemMatcher": [],
"detail": "Copy ssh_router.sh to $HOME/.local/bin/"
},
{
"label": "GitOps(Update): gitops_router.sh",
"type": "shell",
"command": ".bin/gitops update gitops_router",
"group": "build",
"problemMatcher": [],
"detail": "Copy gitops_router.sh to $HOME/.local/bin"
},
{
"label": "GitOps(Update): home.tar.gz",
"type": "shell",
@ -72,14 +56,6 @@
"problemMatcher": [],
"detail": "Copy gitconfig.template to $HOME/"
},
{
"label": "GitOps(Update): validate_command_access.sh",
"type": "shell",
"command": ".bin/gitops update validate_command",
"group": "build",
"problemMatcher": [],
"detail": "Copy validate_command_access.sh to $HOME/.local/bin"
},
{
"label": "Create home tarball",
"type": "shell",
@ -110,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",
@ -125,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": ""
}
]
}