From 71238163da90b1a8674767c358fffb81f475392f Mon Sep 17 00:00:00 2001 From: Lucas Marcolongo Date: Mon, 12 Aug 2024 23:33:44 -0700 Subject: [PATCH] chore(helm): add `dependencies` options to `helm` targets --- apps/marcolongo.cloud-api/project.json | 7 ++++++- apps/marcolongo.cloud/project.json | 7 ++++++- project.json | 7 ++++++- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/apps/marcolongo.cloud-api/project.json b/apps/marcolongo.cloud-api/project.json index a4365c60..f0957c6e 100644 --- a/apps/marcolongo.cloud-api/project.json +++ b/apps/marcolongo.cloud-api/project.json @@ -89,7 +89,12 @@ "chartFolder": "apps/marcolongo.cloud-api/chart", "outputFolder": "{workspaceRoot}/dist/charts/{projectRoot}", "push": false, - "remote": "oci://localhost:5000/helm-charts" + "remote": "oci://localhost:5000/helm-charts", + "dependencies": { + "update": true, + "build": true, + "repositories": [] + } } } } diff --git a/apps/marcolongo.cloud/project.json b/apps/marcolongo.cloud/project.json index cc60e11f..dcda691b 100644 --- a/apps/marcolongo.cloud/project.json +++ b/apps/marcolongo.cloud/project.json @@ -267,7 +267,12 @@ "chartFolder": "apps/marcolongo.cloud/chart", "outputFolder": "{workspaceRoot}/dist/charts/{projectRoot}", "push": false, - "remote": "oci://localhost:5000/helm-charts" + "remote": "oci://localhost:5000/helm-charts", + "dependencies": { + "update": true, + "build": true, + "repositories": [] + } } } } diff --git a/project.json b/project.json index 2744f6ab..f524171b 100644 --- a/project.json +++ b/project.json @@ -9,7 +9,12 @@ "chartFolder": "./chart", "outputFolder": "{workspaceRoot}/dist/charts/{projectRoot}", "push": false, - "remote": "oci://localhost:5000/helm-charts" + "remote": "oci://localhost:5000/helm-charts", + "dependencies": { + "update": true, + "build": true, + "repositories": [] + } } } }