Skip to content

Commit

Permalink
Prep for v1.0.0-beta3 release
Browse files Browse the repository at this point in the history
Change-Id: I8d711226c1c7c2e491fef68f76ed27cf5f6eb002
  • Loading branch information
benjamin-maynard committed Feb 8, 2023
1 parent e9a8d9a commit 30656ae
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions deployment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions deployment/fanout.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions deployment/metrics.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
Expand All @@ -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:
Expand Down
3 changes: 2 additions & 1 deletion docs/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# next

# v1.0.0-beta3

* Temporary fix for cachefilesd intermittently terminating

Expand Down
2 changes: 1 addition & 1 deletion image/smoke-tests/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 30656ae

Please sign in to comment.