I am trying to call the following command from a cron job on a local machine
gcloud --quiet app instances ssh $instance --service MY_SERVICE --version $version -- COMMAND
in the case of a freshly deployed instance this fails in cron job, since there is nobody to answer a question
RSA key fingerprint is XXXXXXXXXXX
Are you sure you want to continue connecting (yes/no)? yes
why --quiet is not enough to quiet the command?
Under normal ssh, I could use a -o StrictHostKeyChecking=no option, but what am I supposed to do here?
Thanks.