Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sgibson91 committed Jul 19, 2024
1 parent 717f69e commit 56cdad7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
6 changes: 6 additions & 0 deletions docs/howto/decrease-size-gcp-filestore.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ terraform plan -var-file=projects/$CLUSTER_NAME.tfvars
terraform apply -var-file=projects/$CLUSTER_NAME.tfvars
```

```{note}
If filestore backups are enabled for this cluster, don't forget to add the name
of the new filestore to the cluster's support values file, following
[the instructions](howto:filesystem-backups:enable:gcp).
```

Open a PR and merge these changes so that other engineers cannot accidentally overwrite them.

## 2. Create a VM
Expand Down
8 changes: 5 additions & 3 deletions docs/howto/filesystem-backups/enable-backups.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,17 @@ export CLUSTER_NAME=<cluster-name>
```yaml
gcpFilestoreBackups:
enabled: true
filestoreName: <filestore-name>
filestoreNames:
- <filestore-name>
- ...
project: <gcp-project>
zone: <gcp-zone>
annotations:
iam.gke.io/gcp-service-account: <gcp-service-account-email>
```
where:
- `filestoreName` is the name of the filestore to be backed up (can be found
from the Filestore Instances page in the GCP console)
- `filestoreNames` is a list of the filestore names to be backed up (can be
found from the Filestore Instances page in the GCP console)
- `project` is the name of the GCP project in which the filestore exists
- `zone` is the GCP zone the filestore is deployed to and where the backups
will be stored (e.g. `us-central-b`)
Expand Down

0 comments on commit 56cdad7

Please sign in to comment.