Compare commits
1 Commits
8d4c2b00df
...
51f173a4af
Author | SHA1 | Date |
---|---|---|
Fleur Kelpin | 51f173a4af |
|
@ -104,7 +104,8 @@ This repository is serves also as a catalogue for Rancher. We have serveral apps
|
||||||
- [Jenkins](molgenis-jenkins/README.md)
|
- [Jenkins](molgenis-jenkins/README.md)
|
||||||
- [NEXUS](molgenis-nexus/README.md)
|
- [NEXUS](molgenis-nexus/README.md)
|
||||||
- [HTTPD](molgenis-httpd/README.md)
|
- [HTTPD](molgenis-httpd/README.md)
|
||||||
- [MOLNIGES preview](molgenis-preview/README.md)
|
- [MOLGENIS preview](molgenis-preview/README.md)
|
||||||
|
- [MOLGENIS vault](molgenis-vault/README.md)
|
||||||
|
|
||||||
### Useful commands
|
### Useful commands
|
||||||
You can you need to know to easily develop and deploy helm-charts
|
You can you need to know to easily develop and deploy helm-charts
|
||||||
|
|
|
@ -10,8 +10,6 @@ That creates a new vault with two vault pods.
|
||||||
|
|
||||||
See https://github.com/coreos/vault-operator/blob/master/doc/user/vault.md
|
See https://github.com/coreos/vault-operator/blob/master/doc/user/vault.md
|
||||||
|
|
||||||
The UI will be exposed on the host name you specify.
|
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
|
|
||||||
### Azure cloud credentials
|
### Azure cloud credentials
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
# Use kubectl create -f vault.yaml to manually create a vault
|
||||||
apiVersion: "vault.security.coreos.com/v1alpha1"
|
apiVersion: "vault.security.coreos.com/v1alpha1"
|
||||||
kind: "VaultService"
|
kind: "VaultService"
|
||||||
metadata:
|
metadata:
|
||||||
|
|
|
@ -1 +1,13 @@
|
||||||
Good luck!
|
Vault operator created
|
||||||
|
|
||||||
|
Next steps:
|
||||||
|
|
||||||
|
* Manually create a vault using resources/vault.yaml
|
||||||
|
* Manually restore a backup using resources/backup.yaml
|
||||||
|
* Unseal the vault pods
|
||||||
|
|
||||||
|
{{ if .Values.backupJob.enable }}
|
||||||
|
!! Make sure to check if the backups succeed !!
|
||||||
|
{{ else }}
|
||||||
|
!!!!!! NO BACKUPS CONFIGURED !!!!!!
|
||||||
|
{{ end }}
|
|
@ -1,3 +1,4 @@
|
||||||
|
# Secret to access microsoft azure blob store
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: Secret
|
kind: Secret
|
||||||
metadata:
|
metadata:
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
# configmap to use as a template for backup cron jobs
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
|
|
|
@ -1,38 +0,0 @@
|
||||||
{{- if .Values.ingress.enabled -}}
|
|
||||||
{{- $fullName := include "molgenis-vault.fullname" . -}}
|
|
||||||
{{- $ingressPath := .Values.ingress.path -}}
|
|
||||||
apiVersion: extensions/v1beta1
|
|
||||||
kind: Ingress
|
|
||||||
metadata:
|
|
||||||
name: {{ $fullName }}
|
|
||||||
labels:
|
|
||||||
app: {{ template "molgenis-vault.name" . }}
|
|
||||||
chart: {{ template "molgenis-vault.chart" . }}
|
|
||||||
release: {{ .Release.Name }}
|
|
||||||
heritage: {{ .Release.Service }}
|
|
||||||
{{- with .Values.ingress.annotations }}
|
|
||||||
annotations:
|
|
||||||
{{ toYaml . | indent 4 }}
|
|
||||||
{{- end }}
|
|
||||||
spec:
|
|
||||||
{{- if .Values.ingress.tls }}
|
|
||||||
tls:
|
|
||||||
{{- range .Values.ingress.tls }}
|
|
||||||
- hosts:
|
|
||||||
{{- range .hosts }}
|
|
||||||
- {{ . }}
|
|
||||||
{{- end }}
|
|
||||||
secretName: {{ .secretName }}
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
||||||
rules:
|
|
||||||
{{- range .Values.ingress.hosts }}
|
|
||||||
- host: {{ . }}
|
|
||||||
http:
|
|
||||||
paths:
|
|
||||||
- path: {{ $ingressPath }}
|
|
||||||
backend:
|
|
||||||
serviceName: {{ $fullName }}
|
|
||||||
servicePort: http
|
|
||||||
{{- end }}
|
|
||||||
{{- end }}
|
|
Loading…
Reference in New Issue