rd4704 / click-to-deploy

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

About

Source for Google Click to Deploy solutions listed on Google Cloud Marketplace.

Disclaimer

This is not an officially supported Google product.

Git submodules

This repository uses git submodule. Please run following commands to receive newest version of used modules.

Updating git submodules

You can use make to make sure submodules are populated with proper code.

make submodule/init # or make submodule/init-force

Alternatively, you can invoke these commands directly in shell, without make.

git submodule init
git submodule sync --recursive
git submodule update --recursive --init

Cloud Build CI

This repository uses Cloud Build for continuous integration. The Cloud Build configuration file is located at cloudbuild.yaml.

Manually run the build

Cloud Build can be triggered manually by running the following command from the root directory of this repository:

export GCP_PROJECT_TO_RUN_CLOUD_BUILD=<>
export GKE_CLUSTER_NAME=<>
export GKE_CLUSTER_LOCATION=<e.g. us-central1>
export GIT_COMMIT_SHA=<>

gcloud builds submit . \
  --config cloudbuild.yaml \
  --substitutions _CLUSTER_NAME=$GKE_CLUSTER_NAME,_CLUSTER_LOCATION=$GKE_CLUSTER_LOCATION,COMMIT_SHA=$GIT_COMMIT_SHA \
  --project $GCP_PROJECT_TO_RUN_CLOUD_BUILD \
  --verbosity info

Cloud Build configuration generator

To make the cloudbuild.yaml configuration easier to maintain, a generator for its contents was created. To re-generate the file, run the following command:

./cloudbuild-k8s-generator.py

As a result, new content will be saved in the cloudbuild.yaml file.

About

License:Apache License 2.0


Languages

Language:Shell 60.3%Language:Makefile 29.7%Language:Dockerfile 6.2%Language:Python 3.7%Language:HTML 0.2%