Skip to content

Commit 9f35e03

Browse files
committed
Fixes
Signed-off-by: Scott Rigby <[email protected]>
1 parent 98c5a6b commit 9f35e03

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

applications/wg-easy/Taskfile.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ tasks:
7878
vars:
7979
CMD: 'task {{.TASK}}'
8080

81-
helm-deploy:
81+
helm-install:
8282
desc: Deploy all charts using helmfile
8383
cmds:
8484
- task: container:exec

applications/wg-easy/docs/development-workflow.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,6 @@ Test multiple charts working together using Helmfile orchestration.
182182
```bash
183183
# Check if issuers are correctly using cert-manager
184184
task kubectl -- get clusterissuers
185-
task kubectl -- get issuers -A
186185
187186
# Verify Traefik routes
188187
task kubectl -- get ingressroutes -A

applications/wg-easy/taskfiles/internal.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ tasks:
139139
# Find all charts and update their dependencies
140140
for chart_dir in $(find charts/ -maxdepth 2 -name "Chart.yaml" | xargs dirname); do
141141
echo "Updating dependency $chart_dir"
142-
helm dependency update --skip-refresh "$chart_dir"
142+
helm dependency update "$chart_dir"
143143
done
144144
- echo "All dependencies updated!"
145145

@@ -279,7 +279,7 @@ tasks:
279279
for chart_dir in $(find charts/ -maxdepth 2 -name "Chart.yaml" | xargs dirname); do
280280
echo "Packaging chart: $chart_dir"
281281
# Navigate to chart directory, package it, and move the resulting .tgz to release folder
282-
(cd "$chart_dir" && helm package . && mv *.tgz ../../release/)
282+
helm package "$chart_dir" && mv *.tgz release/
283283
done
284284
285285
- echo "Release files prepared in ./release/ directory"

0 commit comments

Comments
 (0)