FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • uis/devops/infra/terraform/gcp-cloud-run-app
1 result
Show changes
Commits on Source (6)
include:
- project: "uis/devops/continuous-delivery/ci-templates"
file: "/terraform-module.yml"
ref: "v6.2.0"
ref: "v6.7.3"
- project: "uis/devops/continuous-delivery/ci-templates"
file: "/pre-commit.yml"
ref: "v6.2.0"
ref: "v6.7.3"
- project: "uis/devops/continuous-delivery/ci-templates"
file: "/auto-devops/release-it.yml"
ref: "v6.2.0"
ref: "v6.7.3"
- project: "uis/devops/continuous-delivery/ci-templates"
file: "/commitlint.yml"
ref: "v6.2.0"
ref: "v6.7.3"
variables:
LOGAN_IMAGE: registry.gitlab.developers.cam.ac.uk/uis/devops/infra/dockerimages/logan-terraform:1.6
......
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.6.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
......@@ -23,7 +23,7 @@ repos:
- --no-sort-keys
- id: debug-statements
- repo: https://github.com/DavidAnson/markdownlint-cli2
rev: v0.12.1
rev: v0.17.2
hooks:
# For rule definitions see https://github.com/markdownlint/markdownlint/blob/main/docs/RULES.md
- id: markdownlint-cli2
......
......@@ -70,8 +70,10 @@ minimum version supported by Google's load balancer module.
### ⚠ BREAKING CHANGES
* migrate to cloud run v2 resources
* Remove Cloud Run Domain Mapping
* Migrate to Cloud Run v2 resource. This includes changes to many of the input variables. For
guidance see our [migration guide](https://guidebook.devops.uis.cam.ac.uk/howtos/migrate-a-gcp-cloud-run-app-terraform-deployment-to-v9/#update-the-module-version).
* Disabled monitoring by default.
* Remove Cloud Run Domain Mapping.
### Features
......
<!-- BEGIN_TF_DOCS -->
# GCP Cloud Run Terraform Module
> :bangbang: Following the release of version `9.0.0`, new features should
> only be merged into the `master` branch. The legacy `v8` branch should only
> receive critical bug fixes as needed.
>
> This is to encourage our products to migrate to the latest version of this
> module, benefiting from its many improvements and standardising its usage
> across our many infrastructure repositories.
This module manages the deployment of containerised applications on Cloud Run.
It includes the following functionality:
......@@ -19,7 +27,9 @@ It includes the following functionality:
Following release `9.0.0`, this module has been refactored to use the Cloud Run
`v2` API resources exclusively (i.e. `google_cloud_run_v2_service`). This means
that many input variables are now different and updating from a previous version
will require some changes to your module definition.
will require some changes to your module definition. See the guidebook for our
[migration
guide](https://guidebook.devops.uis.cam.ac.uk/howtos/migrate-a-gcp-cloud-run-app-terraform-deployment-to-v9/#update-the-module-version).
## Examples
......
......@@ -6,7 +6,7 @@ name: gcp-cloud-run-app-testing
services:
test:
image: registry.gitlab.developers.cam.ac.uk/uis/devops/infra/dockerimages/logan-terraform:1.9
image: registry.gitlab.developers.cam.ac.uk/uis/devops/infra/dockerimages/logan-terraform:1.11
entrypoint: ["bash", "-c"]
environment:
# This unsets the GOOGLE_APPLICATION_CREDENTIALS as it is not required but the logan-terraform images sets it.
......@@ -18,7 +18,7 @@ services:
cap_drop:
- "ALL"
terraform-docs:
image: quay.io/terraform-docs/terraform-docs:0.18.0
image: quay.io/terraform-docs/terraform-docs:0.19.0
entrypoint: ["."]
working_dir: /workdir
volumes:
......
# GCP Cloud Run Terraform Module
> :bangbang: Following the release of version `9.0.0`, new features should
> only be merged into the `master` branch. The legacy `v8` branch should only
> receive critical bug fixes as needed.
>
> This is to encourage our products to migrate to the latest version of this
> module, benefiting from its many improvements and standardising its usage
> across our many infrastructure repositories.
This module manages the deployment of containerised applications on Cloud Run.
It includes the following functionality:
......@@ -18,7 +26,9 @@ It includes the following functionality:
Following release `9.0.0`, this module has been refactored to use the Cloud Run
`v2` API resources exclusively (i.e. `google_cloud_run_v2_service`). This means
that many input variables are now different and updating from a previous version
will require some changes to your module definition.
will require some changes to your module definition. See the guidebook for our
[migration
guide](https://guidebook.devops.uis.cam.ac.uk/howtos/migrate-a-gcp-cloud-run-app-terraform-deployment-to-v9/#update-the-module-version).
## Examples
......