add questions and updated post body
This commit is contained in:
parent
4b2a3a01d9
commit
adfd742ecb
11
molgenis-preview/questions.yml
Normal file
11
molgenis-preview/questions.yml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
|
||||||
|
categories:
|
||||||
|
- MOLGENIS
|
||||||
|
questions:
|
||||||
|
- variable: ingress.hosts[0].name
|
||||||
|
default: "test.molgenis.org"
|
||||||
|
description: "Hostname for your stack"
|
||||||
|
type: hostname
|
||||||
|
required: true
|
||||||
|
group: "Services and Load Balancing"
|
||||||
|
label: Hostname
|
@ -1,6 +1,10 @@
|
|||||||
apiVersion: apps/v1beta2
|
apiVersion: apps/v1beta2
|
||||||
kind: Deployment
|
kind: Deployment
|
||||||
metadata:
|
metadata:
|
||||||
|
{{- with .Values.ingress.annotations }}
|
||||||
|
annotations:
|
||||||
|
{{ toYaml . | indent 4 }}
|
||||||
|
{{- end }}
|
||||||
name: {{ template "molgenis.fullname" . }}
|
name: {{ template "molgenis.fullname" . }}
|
||||||
labels:
|
labels:
|
||||||
app: {{ template "molgenis.name" . }}
|
app: {{ template "molgenis.name" . }}
|
||||||
|
@ -27,7 +27,7 @@ spec:
|
|||||||
{{- end }}
|
{{- end }}
|
||||||
rules:
|
rules:
|
||||||
{{- range .Values.ingress.hosts }}
|
{{- range .Values.ingress.hosts }}
|
||||||
- host: {{ . }}
|
- host: {{ .name }}
|
||||||
http:
|
http:
|
||||||
paths:
|
paths:
|
||||||
- path: {{ $ingressPath }}
|
- path: {{ $ingressPath }}
|
||||||
|
@ -8,14 +8,11 @@ service:
|
|||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
enabled: true
|
enabled: true
|
||||||
annotations: {
|
annotations:
|
||||||
nginx.ingress.kubernetes.io/proxy-body-size: 0
|
nginx.ingress.kubernetes.io/proxy-body-size: "0"
|
||||||
}
|
|
||||||
# kubernetes.io/ingress.class: nginx
|
|
||||||
# kubernetes.io/tls-acme: "true"
|
|
||||||
path: /
|
path: /
|
||||||
hosts:
|
hosts:
|
||||||
- test.molgenis.org
|
- name: test.molgenis.org
|
||||||
tls: []
|
tls: []
|
||||||
|
|
||||||
molgenis:
|
molgenis:
|
||||||
|
Loading…
Reference in New Issue
Block a user