Skip to content

Commit

Permalink
updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mueckinger committed Jan 5, 2024
1 parent b5ab4d1 commit acef991
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ This chart will set up rustic as a Kubernetes CronJob

1. Kubernetes >=1.29 or 1.28 (with featureGate `SidecarContainers` enabled)
2. Helm v3 (Tested with v3.11.2)
3. Rustic's chart repository: `helm repo add rustic https://rustic`
3. Rustic's chart repository: `helm repo add mueckinger https://mueckinger.github.io/charts`


Bare minimum `values.yml`:
```
hostname: <myHost>
rustic:
encryption_secret: "***"
encryption_secret: <encryptionSecret>
backup_volume:
hostPath:
path: /path/to/backupfolder
Expand All @@ -33,19 +33,19 @@ s3:
access_key_id: <myS3AccessKeyID>
secret_access_key: <mySecretS3AccessKey>
region: fr-par
bucket: k8s-data-cold
bucket: <bucketName>
```

### Deploying rustic

```
helm install rustic rustic/rustic --set rustic.init=true -f values.yml
helm install rustic mueckinger/rustic --set rustic.init=true -f values.yml
```

If there is already an initialized restic repository in the Bucket omit `--set rustic.init=true`:

```
helm install rustic rustic/rustic -f values.yml
helm install rustic mueckinger/rustic -f values.yml
```

### Examples

0 comments on commit acef991

Please sign in to comment.