This repository has been archived on 2024-12-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
onechart/website/docs/examples/custom-command.md
T
2020-10-09 14:26:52 +02:00

26 lines
374 B
Markdown

OneChart settings for overriding the default command to run:
```yaml
image:
repository: debian
tag: stable-slim
command: |
while true; date; sleep 2; done
```
Check the Kubernetes manifest:
```bash
cat << EOF > values.yaml
image:
repository: debian
tag: stable-slim
command: |
echo "hello"
EOF
helm template my-release onechart/onechart -f values.yaml
```