Cluster information:
Kubernetes version: minikube 1.20
Cloud being used: baremetal
Installation method:n/a
Host OS: unix
CNI and version: ?
CRI and version: ?
Hi all, I have a basic understanding of k8s. I am tasked with something that goes a bit beyond my scope of understanding.
What I know: we can have multiple init containers. Those init containers run sequentially. Init containers run to completion.
What I would like to know: is it possible to have 2 init containers, one which does a conditional check. Lets say checks if a service or website is available. If it is available then proceed to running the second init container. If the condition is met with website or service being unavailable then the second init container is skipped, and the main app container starts.
Thank you,
AC