Attempting to migrate from k8s to Cloud Run... I have one container that ordinarily gets started via CMD ["npm","start"] but it has some utility methods that k8s invokes on cron. k8s conveniently allowed me to define the CMD override so I defined the same container but in the cron definition could set the CMD to a different script.
For Cloud-Run I was planning on duplicating this using cloud scheduler - hitting the endpoint of the cloud run service that would have the special cron CMD defined... but it seems like there is nowehere in the console and no args in gcloud beta run
that let me define a command to run or enrtypoint. So do I have to build a separate image off a second Dockerfile for the separate command if I want to do this?