Skip to content

Commit eaf1f84

Browse files
Prep v1.0.0-beta8
Change-Id: I377aa3093a58a5a6ba9f38a36988678af577c5b0
1 parent cf9d65c commit eaf1f84

File tree

10 files changed

+15
-15
lines changed

10 files changed

+15
-15
lines changed

deployment/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This directory contains a [Terraform Module](https://www.terraform.io/docs/modul
55
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.
66

77
```
8-
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta7"
8+
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta8"
99
```
1010

1111
## Prerequisites
@@ -28,7 +28,7 @@ Basic usage of this module is as follows:
2828
```terraform
2929
module "nfs_proxy" {
3030
31-
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta7"
31+
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta8"
3232
3333
# Google Cloud Project Configuration
3434
PROJECT = "my-gcp-project"

deployment/auto-re-export.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Use of an FSID service to automatically allocate FSIDs for exports is required w
5858
```terraform
5959
module "nfs_proxy" {
6060
61-
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta7"
61+
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta8"
6262
6363
# Include your standard KNFSD configuration, this example only shows the
6464
# configuration values specific to the auto re-export feature.

deployment/fanout.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ There is no special logic in the Knfsd Terraform Module to handle the fanout arc
3737
```terraform
3838
module "nfs_proxy_fanout" {
3939
40-
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta7"
40+
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta8"
4141
4242
# Google Cloud Project Configuration
4343
PROJECT = "my-gcp-project"
@@ -67,7 +67,7 @@ module "nfs_proxy_fanout" {
6767
6868
module "nfs_proxy_cluster" {
6969
70-
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta7"
70+
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta8"
7171
7272
# Google Cloud Project Configuration
7373
PROJECT = "my-gcp-project"

deployment/fsids.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ resource "google_project_iam_member" "nfs_proxy" {
121121
# clusters
122122
module "fsid_database" {
123123
124-
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta7"
124+
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta8"
125125
126126
project = "my-gcp-project"
127127
region = "us-west1"

deployment/metrics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Providing the metrics config from a file:
5959

6060
```terraform
6161
module "nfs_proxy" {
62-
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta7"
62+
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta8"
6363
6464
METRICS_AGENT_CONFIG = file("metrics-config.yaml")
6565
}
@@ -69,7 +69,7 @@ Providing the metrics config inline using heredoc syntax:
6969

7070
```terraform
7171
module "nfs_proxy" {
72-
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta7"
72+
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/terraform-module-knfsd?ref=v1.0.0-beta8"
7373
7474
METRICS_AGENT_CONFIG = <<-EOT
7575
receivers:

deployment/metrics/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This modules configures Google Cloud Monitoring [Metric Descriptors](https://clo
88

99
```terraform
1010
module "metrics" {
11-
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/metrics?ref=v1.0.0-beta7"
11+
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/metrics?ref=v1.0.0-beta8"
1212
project = "my-gcp-project"
1313
}
1414
```
@@ -27,7 +27,7 @@ provider "google" {
2727
}
2828
2929
module "metrics" {
30-
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/metrics?ref=v1.0.0-beta7"
30+
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//deployment/metrics?ref=v1.0.0-beta8"
3131
}
3232
```
3333

docs/changes/changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# next
1+
# v1.0.0-beta8
22

33
* Fetch Ubuntu Kernel source from launchpad
44
* Display Kernel and OS version information at end of packer build

tools/mig-scaler/deployment/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Sub-modules are provided for more control over deployment for scenarios such as:
2727

2828
```terraform
2929
module "mig_scaler" {
30-
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//tools/mig-scaler/deployment?ref=v1.0.0-beta7"
30+
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//tools/mig-scaler/deployment?ref=v1.0.0-beta8"
3131
project = "my-gcp-project"
3232
region = "us-central1"
3333
service_account = google_service_account.mig_scaler.email

tools/mig-scaler/deployment/modules/iam/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ resource "google_service_account" "mig_scaler" {
1616
1717
# Grant permissions for the service account to scale MIGs
1818
module "iam" {
19-
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//tools/mig-scaler/deployment/modules/iam?ref=v1.0.0-beta7"
19+
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//tools/mig-scaler/deployment/modules/iam?ref=v1.0.0-beta8"
2020
project = "my-gcp-project"
2121
service_account = google_service_account.mig_scaler.email
2222
}

tools/mig-scaler/deployment/modules/workflow/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ resource "google_project_service" "workflows" {
2828
2929
# Grant permissions for the service account to scale MIGs
3030
module "iam" {
31-
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//tools/mig-scaler/deployment/modules/iam?ref=v1.0.0-beta7"
31+
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//tools/mig-scaler/deployment/modules/iam?ref=v1.0.0-beta8"
3232
project = "my-gcp-project"
3333
service_account = google_service_account.mig_scaler.email
3434
}
3535
3636
# Deploy the workflow
3737
module "workflow" {
38-
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//tools/mig-scaler/deployment/modules/workflow?ref=v1.0.0-beta7"
38+
source = "github.com/GoogleCloudPlatform/knfsd-cache-utils//tools/mig-scaler/deployment/modules/workflow?ref=v1.0.0-beta8"
3939
project = "my-gcp-project"
4040
region = "us-central1"
4141
name = "mig-scaler"

0 commit comments

Comments
 (0)