serverless-google-cloudfunctions icon indicating copy to clipboard operation
serverless-google-cloudfunctions copied to clipboard

Serverless Google Cloud Functions Plugin – Adds Google Cloud Functions support to the Serverless Framework

Results 110 serverless-google-cloudfunctions issues
Sort by recently updated
recently updated
newest added

We had an issue where we had added a couple files to our bucket which was used by serverless The error we saw: ``` Type Error --------------------------------------------- Cannot read property...

It seems `vpc` can be configured, but there is no way of setting the `ingress` or `egress` settings for a function.

help wanted

AWS has hooks such as this.hooks = { "aws:deploy:finalize:cleanup": this.afterDeploy.bind(this), }; Are there similar hooks for GCP cloud function deploys? If not, how can one create a hook for 'after...

Individual packaging is not working with this plugin for python google functions. Is it possible to just use this plugin for deploying to google? and use another plugin like python-requirements...

help wanted

# This is a Bug Report ## Description **What went wrong?** You get the following error: ``` Type Error --------------------------------------------- Cannot read property 'split' of undefined ``` **What did you...

On sls deploy: `{"ResourceType":"cloudfunctions.v1beta2.function","ResourceErrorCode":"400","ResourceErrorMessage":{"code":400,"message":"The request has errors","status":"INVALID_ARGUMENT","details":[{"@type":"type.googleapis.com/google.rpc.BadRequest","fieldViolations":[{"field":"runtime","description":"Runtime field cannot be empty."}]}],"statusMessage":"Bad Request","requestPath":"https://cloudfunctions.googleapis.com/v1beta2/projects/sunny-buttress-xxxxx/locations/us-central1/functions","httpMethod":"POST"}}` Had to adjust `serverless-google-cloudfunctions/package/lib/compileFunctions.js` to push runtime through.

bug

Quick pass at adding individual packaging functionality. Mostly looked at the AWS implementation and tried to create parity between here and there. @pmuens Happy to add tests + get linting,...

This forces any environment variables to be sent to GCF as strings, even if the value was supplied as a non-string (e.g., number). This is necessary because GCF throws an...

# This is a Bug Report ## Description I have the following config in my .yml: `getArticles:` `handler: getAllArticles` `events:` `- http: articles/all` However after the successful deployment Serverless creates...

enhancement

Google supports using pub/sub events to trigger functions, which can be sent with Cloud Scheduler (https://cloud.google.com/scheduler/) for a proper "cron". The AWS support already exists (https://serverless.com/framework/docs/providers/aws/events/schedule/) so it would be...

enhancement