diff --git a/deployment/README.md b/deployment/README.md index 2211264..98a98a8 100644 --- a/deployment/README.md +++ b/deployment/README.md @@ -5,7 +5,7 @@ This directory contains a [Terraform Module](https://www.terraform.io/docs/modul The `main` branch may be updated at any time with the latest changes which could be breaking. You should always configure your module to use a release. This can be configured in the modules Terraform Configuration block. ``` -source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta2" +source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta3" ``` ## Prerequisites @@ -28,7 +28,7 @@ Basic usage of this module is as follows: ```terraform module "nfs_proxy" { - source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta2" + source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta3" # Google Cloud Project Configuration PROJECT = "my-gcp-project" diff --git a/deployment/fanout.md b/deployment/fanout.md index cfa8fca..4dbcc5b 100644 --- a/deployment/fanout.md +++ b/deployment/fanout.md @@ -37,7 +37,7 @@ There is no special logic in the Knfsd Terraform Module to handle the fanout arc ```terraform module "nfs_proxy_fanout" { - source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta2" + source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta3" # Google Cloud Project Configuration PROJECT = "my-gcp-project" @@ -67,7 +67,7 @@ module "nfs_proxy_fanout" { module "nfs_proxy_cluster" { - source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta2" + source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta3" # Google Cloud Project Configuration PROJECT = "my-gcp-project" diff --git a/deployment/metrics.md b/deployment/metrics.md index 0d65b5e..8d3cd28 100644 --- a/deployment/metrics.md +++ b/deployment/metrics.md @@ -59,7 +59,7 @@ Providing the metrics config from a file: ```terraform module "nfs_proxy" { - source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta2" + source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta3" METRICS_AGENT_CONFIG = file("metrics-config.yaml") } @@ -69,7 +69,7 @@ Providing the metrics config inline using heredoc syntax: ```terraform module "nfs_proxy" { - source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta2" + source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta3" METRICS_AGENT_CONFIG = <<-EOT receivers: diff --git a/docs/changes/changelog.md b/docs/changes/changelog.md index 475f34a..aa6fae7 100644 --- a/docs/changes/changelog.md +++ b/docs/changes/changelog.md @@ -1,4 +1,5 @@ -# next + +# v1.0.0-beta3 * Temporary fix for cachefilesd intermittently terminating diff --git a/image/smoke-tests/terraform/main.tf b/image/smoke-tests/terraform/main.tf index cb8a98b..4babee6 100644 --- a/image/smoke-tests/terraform/main.tf +++ b/image/smoke-tests/terraform/main.tf @@ -43,7 +43,7 @@ resource "google_filestore_instance" "source" { } module "proxy" { - source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta2" + source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta3" PROJECT = var.project REGION = var.region