Skip to content

Commit

Permalink
Prep v0.9.0 release
Browse files Browse the repository at this point in the history
Change-Id: I428203b41d39c108a1e88636ff397d63472ce679
  • Loading branch information
benjamin-maynard committed Sep 6, 2022
1 parent 09b8891 commit 98318ac
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 10 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=v0.8.0"
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v0.9.0"
```

## 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=v0.8.0"
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v0.9.0"
# 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=v0.8.0"
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v0.9.0"
# Google Cloud Project Configuration
PROJECT = "my-gcp-project"
Expand Down Expand Up @@ -66,7 +66,7 @@ module "nfs_proxy_fanout" {
module "nfs_proxy_cluster" {
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v0.8.0"
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v0.9.0"
# 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=v0.8.0"
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v0.9.0"
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=v0.8.0"
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v0.9.0"
METRICS_AGENT_CONFIG = <<-EOT
receivers:
Expand Down
4 changes: 2 additions & 2 deletions deployment/metrics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This modules configures Google Cloud Monitoring [Metric Descriptors](https://clo

```terraform
module "metrics" {
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/metrics?ref=v0.8.0"
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/metrics?ref=v0.9.0"
project = "my-gcp-project"
}
```
Expand All @@ -29,7 +29,7 @@ provider "google" {
}
module "metrics" {
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/metrics?ref=v0.8.0"
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/metrics?ref=v0.9.0"
}
```

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

# v0.9.0

* Custom metrics configuration via Terraform
* Total client NFS operations metric
* Support Persistent Disk instead of Local SSD for the Cachefilesd volume
Expand Down
2 changes: 1 addition & 1 deletion docs/client-metrics.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ gcloud compute instances delete "$VM_NAME" --project="$PROJECT" --zone="$ZONE"
```bash
git clone https://github.com/GoogleCloudPlatform/knfsd-cache-utils.git
cd knfsd-cache-utils
git checkout v0.8.0
git checkout v0.9.0
```

### (local) Copy KNFSD Metrics Agent source code to the VM
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=v0.8.0"
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v0.9.0"

PROJECT = var.project
REGION = var.region
Expand Down

0 comments on commit 98318ac

Please sign in to comment.