As you know, there is a "docker exec" command in Docker to execute a command in a container. There is a "kubectl exec "command in K8S to execute a command in a K8S poc. So, is there a "marathon exec " like command in Marathon to execute commands in Marathon App?
The detail scenario is: we use Marathon as our container orchestration tool. And we deploy Ceph RGW by Marathon. After deployment, we want create a S3 user by command "radosgw-admin user create"
, which can only be executed in shell.
As a result, how can I implement this situation.
Thanks a lot.