If I have to make a pod sleep for 3600 seconds, will the following command work . . .

kartik_kube:
if I have to make a pod sleep for 3600 seconds, will the following command work inside a container?

...
...
containers:
- image: ...
  name: ...
  command: ["sleep", "3600"]

Ninad Desai:
yes it should

kartik_kube:
thanks!