Skip to content

Commit 7e03cf8

Browse files
committed
Fix per Ash's suggestions
Signed-off-by: Scott Rigby <[email protected]>
1 parent deb0d1a commit 7e03cf8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

applications/wg-easy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Use tools to automate repetitive tasks, reducing human error and increasing deve
4848

4949
- Task-based workflow automation
5050
- Helmfile for orchestration
51-
- Container-based dev environment for consistency
51+
- Container-based task running for consistency
5252
- Automated validation and testing
5353
- Streamlined release process
5454

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Validate chart templates locally without deploying to a cluster.
108108
109109
1. Run helm template to render the chart and inspect manifests:
110110
```bash
111-
less <<< `task helm -- template ./cert-manager`
111+
echo "$(task helm -- template ./cert-manager)" | less
112112
```
113113
Note this is the equivalent of running `helm template ./cert-manager | less` outside of the container.
114114

applications/wg-easy/taskfiles/container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ tasks:
1818
- task: check-image-exists
1919
cmds:
2020
- |
21-
{{.CONTAINER_RUNTIME}} run --rm -it \
21+
{{.CONTAINER_RUNTIME}} run --rm \
2222
-v $(pwd):/workspace \
2323
-v $(pwd)/taskfiles/internal.yaml:/workspace/Taskfile.yaml \
2424
-e REPLICATED_API_TOKEN={{ .REPLICATED_API_TOKEN }} \

0 commit comments

Comments
 (0)