Skip to content

Commit

Permalink
chore(helm): add dependencies options to helm targets
Browse files Browse the repository at this point in the history
  • Loading branch information
marcolongol committed Aug 13, 2024
1 parent c652743 commit 7123816
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
7 changes: 6 additions & 1 deletion apps/marcolongo.cloud-api/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": []
}
}
}
}
Expand Down
7 changes: 6 additions & 1 deletion apps/marcolongo.cloud/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": []
}
}
}
}
Expand Down
7 changes: 6 additions & 1 deletion project.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": []
}
}
}
}
Expand Down

0 comments on commit 7123816

Please sign in to comment.