serverless-google-cloudfunctions
serverless-google-cloudfunctions copied to clipboard
Serverless Google Cloud Functions Plugin – Adds Google Cloud Functions support to the Serverless Framework
Serverless deploy creates this error. It looks like something is wrong on the google side. This behavior is happening after I remove a function that used to be there, but...
References: https://github.com/nodejs/node/issues/684 Node Version: 9.5.0 googleProvider.js ```js let credentials = this.serverless.service.provider.credentials; const credParts = credentials.split(path.sep); if (credParts[0] === '~') { credParts[0] = os.homedir(); credentials = credParts.reduce((memo, part) => path.join(memo, part),...
Looks like we do not have any control over the cloud storage bucket for deployments. Parameterizing this would give user's finer control over IAM policies and permissions. For example, current...
As a new user to this package, I have had a difficult time digging through the `serverless` docs trying to figure out which arguments and configurations are available. There are...
Deploying the Hello World function sometimes fails to actually ship up the source: ``` Serverless: Checking deployment update progress... ... Error -------------------------------------------------- Error: Deployment failed: RESOURCE_ERROR {"ResourceType":"gcp-types/cloudfunctions-v1:projects.locations.functions","ResourceErrorCode":"400","ResourceErrorMessage":"Failed to retrieve function...
Error setting up the execution environment for your function. Please try again after a few minutes.
Trying to deploy `google-nodejs` template leads me to 500 error: ``` serverless create --template google-nodejs --path my-service # setup credentials etc serverless deploy Serverless: Checking deployment update progress... .................................... Error...
Although this plugin supports VPC accesses, ingress/egress settings controls (what traffic can reach the function) are not available yet. It is now supported by `gcloud` command options: https://cloud.google.com/sdk/gcloud/reference/functions/deploy (I confirmed...
In case we don't want to have the deployed function name with `serviceName-stage-functionName` pattern, and would prefer to have `functionName` only, we can specify the `name` directly in the `serverless.yml`....
This PR: - casts the values from environment configuration to strings prior to deploy to prevent GCF invalid argument error - adds test cases for various non-string environment values Related:...
I recently added support for IAM policies (https://github.com/serverless/serverless-google-cloudfunctions/pull/219), and it appears that using it is causing deploys to fail (https://github.com/serverless/serverless-google-cloudfunctions/pull/219#issuecomment-649422035) After overwriting my local `compileFunction.js` in my node_modules (probably a...