Reputation: 21
Looking to make updates to a google function without potential loss in service or down time. Does GCP support a blue-green deployment for functions or only for applications? if not blue-green, are there other solutions with google functions to avoid these issues?
Upvotes: 2
Views: 1946
Reputation: 9810
As of now (Jan 2019), there's no option to perform Cloud Functions deployments as you described. Only the last version for a Cloud Function is available and reachable and you can't switch traffic between versions, as you'd do with App Engine. Note that there's already a Public Feature Request open that includes this.
Upvotes: 2