From a03c3ceefdec736dd8a77bbb03f22b2e6a47756e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rcio=20Fernandes?= Date: Fri, 17 Jul 2026 13:59:42 +0100 Subject: [PATCH] modified: .vscode/tasks.yaml --- .vscode/tasks.yaml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.vscode/tasks.yaml b/.vscode/tasks.yaml index 22264ca..d61f020 100644 --- a/.vscode/tasks.yaml +++ b/.vscode/tasks.yaml @@ -8,6 +8,7 @@ "args": [ "${file}" ], + }, { "label": "Kustomize - Build - Selected File", "type": "shell", @@ -21,6 +22,20 @@ "command": "bash -c '[[ \"$(basename ${file})\" == \"kustomization.yaml\" ]] && kubectl kustomize ${fileDirname} | kubectl apply -f - || echo \"❌ invalid kustomization.yaml\"'", "problemMatcher": [], "group": "build" - } + }, + { + "label": "flux - Reconcile Source Git", + "type": "shell", + "command": "flux reconcile source git GIT-REPO-NAME -n YOUR-NAMESPACE", + "problemMatcher": [], + "group": "build" + }, + { + "label": "flux - Reconcile full-stack (with-source)", + "type": "shell", + "command": "flux reconcile kustomization KUSTOMIZATION-NAME -n YOUR-NAMESPACE --with-source", + "problemMatcher": [], + "group": "build" + } ] } \ No newline at end of file