Alexei Ledenev
Alexei Ledenev
@caseycrites can you please attach log message
@caseycrites please attach your pod YAML file here
need to rebase this PR
@sdminonne whenever you are ready
For “pre” step you can use K8s standard approach- initContainers.
@chirag04 Can you put everything inside `initContainers`, plus single container in `containers`? They run in sequence, thus the first container can serve as "pre-step" and one container in `containers` section...
@chirag04 another approach is to use K8s Container lifecycle events `postStart` and `preStop`, see [here](https://kubernetes.io/docs/tasks/configure-pod-container/attach-handler-lifecycle-event/) ``` ... containers: - name: lifecycle-demo-container image: nginx lifecycle: postStart: exec: command: ["/bin/sh", "-c", "echo...
Do not forget to update [CATALOG.md](CATALOG.md) file
Update [CATALOG.md](CATALOG.md) file too