Skip to content

Commit

Permalink
Merge pull request molgenis#198 from sidohaakma/fix/vault-minio-endpoint
Browse files Browse the repository at this point in the history
fix(vault): added port 9000 to Minio endpoint
  • Loading branch information
fdlk authored Aug 26, 2019
2 parents 99b9997 + 1f49680 commit 9a8690a
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/molgenis-vault/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
appVersion: "1.0"
description: MOLGENIS vault
name: molgenis-vault
version: 0.1.4
version: 0.1.5
sources:
- https://github.com/molgenis/molgenis-ops-helm.git
icon: https://raw.githubusercontent.com/molgenis/molgenis-ops-helm/master/charts/molgenis-vault/catalogIcon-molgenis-vault.png
Expand Down
3 changes: 2 additions & 1 deletion charts/molgenis-vault/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ The deployment of the Vault consists of 7 steps.
3. *Create Vault service*

```rancher kubectl create -f resources/vault.yaml --namespace vault-operator```

See https://github.com/coreos/vault-operator/blob/master/doc/user/vault.md

4. *Add NodePort service to expose to other clusters*
Expand All @@ -25,7 +26,7 @@ The deployment of the Vault consists of 7 steps.

5. *Restore backup*

Fill in the filename of the Minio backup ```move-to-minio``` in ```restore.yaml```
Fill in the filename of the Minio backup ```<specify the backup name>``` in ```restore.yaml```
```rancher kubectl create -f resources/restore.yaml --namespace vault-operator```

6. *Unlock the Vault*
Expand Down
2 changes: 1 addition & 1 deletion charts/molgenis-vault/questions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ questions:
group: backup
type: string
required: true
default: http://minio.minio.svc
default: http://minio.minio.svc:9000
2 changes: 1 addition & 1 deletion charts/molgenis-vault/resources/backup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ spec:
s3:
awsSecret: aws
path: vault/<specify name>
endpoint: http://minio.minio.svc
endpoint: http://minio.minio.svc:9000
forcePathStyle: true
2 changes: 1 addition & 1 deletion charts/molgenis-vault/resources/restore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ spec:
s3:
path: vault/backup-<specify the backup name>
awsSecret: aws
endpoint: http://minio.minio.svc
endpoint: http://minio.minio.svc:9000
forcePathStyle: true
2 changes: 1 addition & 1 deletion charts/molgenis-vault/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
aws:
accessKeyId: AKIAIOSFODNN7EXAMPLE
secretAccessKey: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
endpoint: http://minio.minio.svc
endpoint: http://minio.minio.svc:9000

# backupjob describes the backup cronjob
backupJob:
Expand Down

0 comments on commit 9a8690a

Please sign in to comment.