12 lines
219 B
Markdown
12 lines
219 B
Markdown
## Init Container
|
|
|
|
This example shows the configuration of custom init container for any of the components:
|
|
|
|
```yaml
|
|
nappl:
|
|
initContainers:
|
|
- name: myInit
|
|
image: myImage
|
|
command: [ "/startup.sh" ]
|
|
```
|