Hi,
I'm new to Kubernetes cluster management. I have completed kubernetes cluster setup with 2 nodes up and running. So for getting started, I decided to run NodeBB app on Cluster. So instead of building my own image got official NodeBB docker container at Docker HUb
So to startup NodeBB from that container i fired command at Kubernetes master.
kubectl run nodebbtest --image=nodebb/docker:ubuntu --port=4567 --replicas=2
After waiting for some time it started containers with two replicas. But the problem is it keeps restarting my containers.
Anyone knows why this is happening? Your help would be appreciated!
Thank you