Source for Google Click to Deploy solutions listed on Google Cloud Marketplace.
This is not an officially supported Google product.
This repository uses Cloud Build for continuous integration. The Cloud Build configuration file is located at cloudbuild.yaml
.
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>
gcloud builds submit . \
--config cloudbuild.yaml \
--substitutions _CLUSTER_NAME=$GKE_CLUSTER_NAME,_CLUSTER_LOCATION=$GKE_CLUSTER_LOCATION \
--project $GCP_PROJECT_TO_RUN_CLOUD_BUILD \
--verbosity info
To make the cloudbuild.yaml
configuration easier to maintain, a generator for
its contents was created.
-
The generator uses Jinja2 templates, install it using
pip install jinja2
command. -
To regenerate the file, run the following command:
./cloudbuild-k8s-generator.py
-
As a result, new content will be saved in the
cloudbuild.yaml
file.