Please add V1 to Google Cloud Functions
See original GitHub issueLooking at the list here, https://cloud.google.com/deployment-manager/docs/configuration/supported-resource-types, we see that cloudfunctions.v1beta2.function is a supported type.
However, Cloud Functions are now out of beta, and we should upgrade to V1 them before December 4th 2018.
It would be nice to have it added to this list
I have tried deploying with the type cloudfunctions.v1.function
, but am getting the error The type [cloudfunctions.v1.function] was not found.
Thanks!
Issue Analytics
- State:
- Created 5 years ago
- Comments:8 (3 by maintainers)
Top Results From Across the Web
Package google.cloud.functions.v1
CloudFunctionsService. A service that application uses to manipulate triggers and functions. Synchronously invokes a deployed Cloud Function. ...
Read more >Create a Google function from a Google cloud function
I did this in python: Create the first cloud function hello_world . Zip the function and move it to Google Cloud Storage.
Read more >Best way to deploy TypeScript function to Cloud Function? #254
I am using the TypeScript template to write the function and I faced some issues trying to deploy it using the gcloud functions...
Read more >cloudfunctions - Go Packages
import "google.golang.org/api/cloudfunctions/v1" ... ctx := context. ... This may be used to include empty fields in Patch requests.
Read more >Functions - Google Developers
For # example: # # 1. The authorization model must support it. Google Cloud Functions # only allows EventTriggers to be deployed that...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thanks guys, I got it working following your example! 🔥🔥
Something that was not very obvious with the documentation, but got it from the example, is the
parent
field.For anyone else landing on this issue, here is an example of a V1 Cloud Function for Deployment Manager:
Cloud functions V1 is accessible through a DM type provider: type: gcp-types/cloudfunctions-v1:$collection
e.g. https://github.com/GoogleCloudPlatform/deploymentmanager-samples/tree/master/examples/v2/cloud_functions
Supported types are updated often, for the latest list please use:
gcloud beta deployment-manager types list --project gcp-types