Serverless CLI
Serverless tool for the Google Cloud. You need the gcloud
installed.
Install
$ pip install shopcloud-serverless
$ serverless init
Jobs
$ serverless jobs init
$ serverless jobs create <job-name>
$ serverless jobs deploy <job-name>
$ serverless jobs run <job-name>
Secrets:
Secrets can you write in the .env.temp
file with the SecretHub syntax.
Gateway
The main entrypoint for you serverless endpoint api is the gateway.
Init the gateway with the function and then deploy the endpoints and then you can deploy the api.yaml file with gateway deploy endpoint.
$ serverless gateway init
$ serverless gateway deploy
Endpoints
Create a new endpoint for every path.
$ serverless endpoints init
$ serverless endpoints create health
Add the Endpoint in the api.yaml
the operation_id
must be unqie and is the identifier for the library.
You can change the <endpoint-name>.yaml
with the parameters
memory
: memory in MBruntime
: runtime of the function "python312"trigger
: http or pubsub the value is the name of the topic
dependencies
: as string array
for development in the background we use functions-framework
$ serverless endpoints serve health
run the integration test suite
$ serverless endpoints test health
then deploy the function
$ serverless endpoints deploy health