modified: casa.full-stack.code-workspace

This commit is contained in:
Márcio Fernandes
2026-08-29 20:56:32 +00:00
parent bd6922b1cf
commit 9925a9daac
+2 -9
View File
@@ -101,18 +101,11 @@
"focus": false,
"panel": "shared"
}
},
{
"label": "Kustomize - Build - Selected File",
"type": "shell",
"command": "bash -c '[[ \"$(basename ${file})\" == \"kustomization.yaml\" ]] && kubectl kustomize ${fileDirname} || echo \"❌ invalid kustomization.yaml\"'",
"problemMatcher": [],
"group": "build"
},
{
"label": "Kustomize - Build & Deploy - Selected File",
"label": "Kustomize - Deploy - Selected File",
"type": "shell",
"command": "bash -c '[[ \"$(basename ${file})\" == \"kustomization.yaml\" ]] && kubectl kustomize ${fileDirname} | kubectl apply -f - || echo \"❌ invalid kustomization.yaml\"'",
"command": "kubectl apply -k ${fileDirname}",
"problemMatcher": [],
"group": "build"
}