This commit is contained in:
Laszlo Fogas
2020-10-13 20:19:17 +02:00
parent c6b6171cef
commit b5954f7df6
9 changed files with 149 additions and 0 deletions
+16
View File
@@ -23,3 +23,19 @@ EOF
helm template my-release onechart/onechart -f values.yaml
```
### Running a command in Alpine Linux
```bash
cat << EOF > values.yaml
image:
repository: alpine
tag: 3.12
command: |
echo "hello"
shell: "/bin/ash"
EOF
helm template my-release onechart/onechart -f values.yaml
```