I'm building a custom image for App Engine Flexible with gcloud app deploy
currently. I've played with using Kaniko to get caching working with gcloud builds submit
for other projects, but is it possible to enable Kaniko for a build submitted with gcloud app deploy
?
I've tried running gcloud config set builds/use_kaniko True
, which doesn't seem to change the build behavior.
It seems like one option would be to build an image first via gcloud builds submit
, then use gcloud app deploy --image-url=...
, but I wasn't sure if there was a more streamlined way.