You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 1, 2022. It is now read-only.
I am trying to deploy operator by kustomize. But looks like the pod is not running, and the status is CrashLoopBackOff.
Then look into detail by using describe command, I have following message:
Last State: Terminated
Reason: ContainerCannotRun
Message: OCI runtime create failed: container_linux.go:349: starting container process caused "exec: "/root/manager": stat /root/manager: no such file or directory": unknown
I did some research online, but didn't get the answer I want.
Some people said this is a Windows specific problem, just use kubectl exec -it [pod_name] -c [container_name] -- ./bin/sh.
But the thing is the container is failed to be created, so cannot use kubectl exec -it command.
Kind of confused. Appreciate any help
I am trying to deploy operator by kustomize. But looks like the pod is not running, and the status is CrashLoopBackOff.
Then look into detail by using describe command, I have following message:
Last State: Terminated
Reason: ContainerCannotRun
Message: OCI runtime create failed: container_linux.go:349: starting container process caused "exec: "/root/manager": stat /root/manager: no such file or directory": unknown
I did some research online, but didn't get the answer I want.
Some people said this is a Windows specific problem, just use kubectl exec -it [pod_name] -c [container_name] -- ./bin/sh.
But the thing is the container is failed to be created, so cannot use kubectl exec -it command.
Kind of confused. Appreciate any help