Skip to content

Commit 277fa8e

Browse files
committed
Use vim from STDIN instead of piping to less
Signed-off-by: Scott Rigby <[email protected]>
1 parent 7e03cf8 commit 277fa8e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,11 @@ Configure chart values and create or modify templates.
106106
107107
Validate chart templates locally without deploying to a cluster.
108108
109-
1. Run helm template to render the chart and inspect manifests:
109+
1. Run helm template to render the chart and inspect manifests (quit with `:q!`):
110110
```bash
111-
echo "$(task helm -- template ./cert-manager)" | less
111+
task helm -- template ./cert-manager | vim -
112112
```
113-
Note this is the equivalent of running `helm template ./cert-manager | less` outside of the container.
113+
Note this is the equivalent of running `helm template ./cert-manager | vim -` outside of the container.
114114

115115
**Validation point**: Generated Kubernetes manifests should be valid and contain the expected resources.
116116

0 commit comments

Comments
 (0)