Fedor
Fedor

Reputation: 1444

Is it possible to customize gcloud app deploy?

I'd like to perform some preliminary checks before running the actual deployment to AppEngine. It would be nice to put some Python find in the repository, so that gcloud would behave similarly for everyone. Does gclould provide some means for this kind of customization? Can't find this in the official docs.

Upvotes: 0

Views: 131

Answers (1)

Zachary Newman
Zachary Newman

Reputation: 21404

No, there are no hooks in gcloud app deploy. But you could pretty easily write a small Python script to wrap the call to gcloud using e.g. the subprocess module and have all of your users deploy via that script.

Upvotes: 2

Related Questions