Simple Cloud Run starter project for go
meant to be used as a GitHub repository template to speed up new Cloud Run service development by removing the need to re-create the common "boilerplate" code and simplifying common steps.
For developers wanting to quickly start their go
service development on Cloud Run from a well-structured template with minimal amount of external dependencies.
This is not an official or standard Cloud Run project layout, just a set of common initial bits that are helpful to me.
To use this template when creating a new Cloud Run service, just click on the "use this template" button and follow the prompts.
Your newly created project based on the gorunstarter
template will also include the three basic steps of Cloud Run developer workflow. You can click on the below links to see the content of these commands.
For complete walk-through build and deploy see the Cloud Run Quickstart
Building a container image which submits job to Cloud Build using the included Dockerfile and results in versioned, non-root container image URI which will be used to deploy your service to Cloud Run.
bin/build-container-image
Creating a service account which configures least privilege IAM service account which identity the deployed Cloud Run service will run under.
bin/create-service-account
Deploying Cloud Run service which deploys public (i.e. unauthenticated) Cloud Run service configured with environment variable and service account identity using the previously built container image.
bin/deploy-cloud-run-service
To cleanup all resources created by this sample execute
bin/cleanup
This is my personal project and it does not represent my employer. I take no responsibility for issues caused by this code. I do my best to ensure that everything works, but if something goes wrong, my apologies is all you will get.