Skip to content

Commit 3189158

Browse files
committed
update docs
1 parent 1b44e26 commit 3189158

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,9 @@ Test multiple charts working together using Helmfile orchestration.
172172
2. Deploy all charts:
173173
174174
```bash
175-
task helm-deploy
175+
# set a license id so we can perform the helm install from the replicated registry
176+
export LICENSE_ID=<customer license id>
177+
task helm-install
176178
```
177179

178180
3. Verify cross-component integration:

applications/wg-easy/docs/task-reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ These tasks support the iterative development process, focusing on fast feedback
99
| Task | Description | Related Workflow Stage |
1010
|------|-------------|------------------------|
1111
| `dependencies-update` | Updates Helm dependencies for all charts in the repository | Stage 1: Dependencies |
12-
| `helm-deploy` | Deploys all charts using helmfile with proper sequencing | Stage 5: Integration Testing |
12+
| `helm-install` | Deploys all charts using helmfile with proper sequencing | Stage 5: Integration Testing |
1313
| `ports-expose` | Exposes the configured ports on the cluster for testing | Stage 4-5: Chart Installation/Integration |
1414
| `remove-k3s-traefik` | Removes pre-installed Traefik from k3s clusters to avoid conflicts | Stage 4-5: Chart Installation/Integration |
1515

@@ -121,7 +121,7 @@ Parameters in the Taskfile.yaml try to always have defaults so that it works out
121121
These tasks are designed to support the progressive complexity approach:
122122

123123
1. **Early Stages** - Use `dependencies-update` and helm commands directly
124-
2. **Middle Stages** - Use `cluster-create`, `helm-deploy`, and `test`
124+
2. **Middle Stages** - Use `cluster-create`, `helm-install`, and `test`
125125
3. **Later Stages** - Use `release-prepare`, `release-create`, and embedded cluster tasks
126126

127127
This organization allows developers to focus on the appropriate level of complexity at each stage of development.

0 commit comments

Comments
 (0)