Skip to content

Commit

Permalink
Merge "Prep v1.0.0-beta6 release" into main
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamin-maynard authored and Gerrit Code Review committed Jul 17, 2023
2 parents 852d6f0 + e31c21d commit 4ec5745
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 9 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-beta5"
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta6"
```

## 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-beta5"
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta6"
# Google Cloud Project Configuration
PROJECT = "my-gcp-project"
Expand Down
2 changes: 1 addition & 1 deletion deployment/auto-re-export.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Use of an FSID service to automatically allocate FSIDs for exports is required w
```terraform
module "nfs_proxy" {
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta5"
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta6"
# Include your standard KNFSD configuration, this example only shows the
# configuration values specific to the auto re-export feature.
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-beta5"
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta6"
# 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-beta5"
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta6"
# Google Cloud Project Configuration
PROJECT = "my-gcp-project"
Expand Down
2 changes: 1 addition & 1 deletion deployment/fsids.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ resource "google_project_iam_member" "nfs_proxy" {
# clusters
module "fsid_database" {
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta5"
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta6"
project = "my-gcp-project"
region = "us-west1"
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-beta5"
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta6"
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-beta5"
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta6"
METRICS_AGENT_CONFIG = <<-EOT
receivers:
Expand Down
2 changes: 1 addition & 1 deletion deployment/metrics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ provider "google" {
}
module "metrics" {
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/metrics?ref=v1.0.0-beta5"
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/metrics?ref=v1.0.0-beta6"
}
```

Expand Down
2 changes: 2 additions & 0 deletions docs/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# next

# v1.0.0-beta6

* Update kernel to Ubuntu mainline 6.4.0
* Fix scaling to zero when using round robin DNS
* Support deploying Cloud SQL instance with a private IP
Expand Down

0 comments on commit 4ec5745

Please sign in to comment.