deploy folder restructured, preparing for flux, removed ghost pvc nextcloud-data, simplification of pvc names

This commit is contained in:
Márcio Fernandes
2026-07-14 10:19:05 +00:00
parent 6438530fba
commit 3e8e2a4987
41 changed files with 316 additions and 426 deletions
+12 -4
View File
@@ -3,11 +3,19 @@
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"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": "Apply Infra",
"type": "shell",
"command": "./ops-scripts/apply-infra.sh",
"problemMatcher": [],
"label": "Kustomize - Build & Deploy - Selected File",
"type": "shell",
"command": "bash -c '[[ \"$(basename ${file})\" == \"kustomization.yaml\" ]] && kubectl kustomize ${fileDirname} | kubectl apply -f - || echo \"❌ invalid kustomization.yaml\"'",
"problemMatcher": [],
"group": "build"
},
{
"label": "Apply App",