Skip to content

Commit ad28c39

Browse files
committed
Removed HMAC
1 parent 06e620f commit ad28c39

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

docs/backups-storage.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -175,10 +175,10 @@ To use [Google Cloud Storage (GCS) :octicons-link-external-16:](https://cloud.go
175175

176176
3. Encode your keys in base64 format. You need to encode the service account email and the private key. You can get these values from the service account key file you downloaded when you created the service account keys.
177177

178-
The following command shows how to encode a private key. Replace the placeholder with your private key and service account email or HMAC key and secret:
178+
The following command shows how to encode a private key. Replace the placeholder with your private key and service account email:
179179

180180
```bash
181-
echo "-----BEGIN PRIVATE KEY-----\nPRIVATE_KEY\n-----END PRIVATE KEY-----\n" | base64
181+
echo -n "-----BEGIN PRIVATE KEY-----\nPRIVATE_KEY\n-----END PRIVATE KEY-----\n" | base64
182182
```
183183

184184
4. Create the Kubernetes Secret configuration file and specify the encoded GCS credentials within:
@@ -210,8 +210,6 @@ To use [Google Cloud Storage (GCS) :octicons-link-external-16:](https://cloud.go
210210

211211
* Specify the Secrets object name you created for the `storages.<NAME>.gcs.credentialsSecret` option
212212

213-
* **For authentication with HMAC keys** specify the `storages.<NAME>.gcs.endpointUrl` as `https://storage.googleapis.com`.
214-
215213
```yaml
216214
backup:
217215
storages:

0 commit comments

Comments
 (0)