Compare commits
No commits in common. "20e72c9f5c5758be53768bf09b9e6897e612a9ad" and "012b58ea678727c242cc16885cba8525f37c26f7" have entirely different histories.
20e72c9f5c
...
012b58ea67
5
httpd/v0.1.x/Chart.yaml
Normal file
5
httpd/v0.1.x/Chart.yaml
Normal file
@ -0,0 +1,5 @@
|
||||
apiVersion: v1
|
||||
appVersion: "1.0"
|
||||
description: A Helm chart for Kubernetes
|
||||
name: httpd
|
||||
version: 0.1.2
|
64
httpd/v0.1.x/questions.yml
Normal file
64
httpd/v0.1.x/questions.yml
Normal file
@ -0,0 +1,64 @@
|
||||
categories:
|
||||
- MOLGENIS
|
||||
questions:
|
||||
- variable: molgenisUsername
|
||||
default: "molgenis"
|
||||
description: "User of the application"
|
||||
type: string
|
||||
required: true
|
||||
label: MOLGENIS username
|
||||
group: "MOLGENIS Settings"
|
||||
- variable: molgenisEmail
|
||||
default: "admin@molgenis.org"
|
||||
description: "Admin email"
|
||||
type: string
|
||||
required: true
|
||||
label: MOLGENIS admin email
|
||||
group: "MOLGENIS Settings"
|
||||
- variable: persistence.enabled
|
||||
default: "false"
|
||||
description: "Enable persistent volume for MOLGENIS"
|
||||
type: boolean
|
||||
required: true
|
||||
label: MOLGENIS Persistent Volume Enabled
|
||||
show_subquestion_if: true
|
||||
group: "MOLGENIS Settings"
|
||||
subquestions:
|
||||
- variable: persistence.size
|
||||
default: "10Gi"
|
||||
description: "Persistent Volume Size"
|
||||
type: string
|
||||
label: MOLGENIS Volume Size
|
||||
- variable: persistence.storageClass
|
||||
default: ""
|
||||
description: "If undefined or null, uses the default StorageClass. Default to null"
|
||||
type: storageclass
|
||||
label: Default StorageClass for MOLGENIS
|
||||
- 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
|
||||
- variable: httpd.hostname
|
||||
default: "test.molgenis.org"
|
||||
description: "Hostname for your services (comma separated, example: [hostname]:[port])"
|
||||
type: string
|
||||
required: false
|
||||
group: "Apache configuration"
|
||||
label: Hostname
|
||||
- variable: httpd.proxy
|
||||
default: ""
|
||||
description: "Proxy for your services (comma separated, example: [service]:[port]:[path])"
|
||||
type: string
|
||||
required: false
|
||||
group: "Apache configuration"
|
||||
label: Proxy
|
||||
- variable: httpd.redirect
|
||||
default: ""
|
||||
description: "Redirection urls for your services (comma separated, example: [redirection_url])"
|
||||
type: string
|
||||
required: false
|
||||
group: "Apache configuration"
|
||||
label: Redirection
|
@ -24,8 +24,9 @@ spec:
|
||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||
ports:
|
||||
- name: {{ .Values.service.name }}
|
||||
containerPort: {{ .Values.service.port }}
|
||||
- name: http
|
||||
containerPort: 80
|
||||
protocol: TCP
|
||||
env:
|
||||
- name: SERVER_NAME
|
||||
value: "{{ .Values.httpd.hostname }}"
|
@ -10,9 +10,10 @@ metadata:
|
||||
spec:
|
||||
type: {{ .Values.service.type }}
|
||||
ports:
|
||||
- name: {{ .Values.service.name }}
|
||||
port: {{ .Values.service.port }}
|
||||
|
||||
- port: {{ .Values.service.port }}
|
||||
targetPort: http
|
||||
protocol: TCP
|
||||
name: http
|
||||
selector:
|
||||
app: {{ template "httpd.name" . }}
|
||||
release: {{ .Release.Name }}
|
@ -10,7 +10,6 @@ image:
|
||||
pullPolicy: Always
|
||||
|
||||
service:
|
||||
name: httpd
|
||||
type: ClusterIP
|
||||
port: 80
|
||||
|
||||
@ -18,9 +17,12 @@ httpd:
|
||||
proxy: httpd:80:/
|
||||
redirect: redirect.molgenis.local
|
||||
hostname: test.molgenis.local
|
||||
volume:
|
||||
username: molgenis
|
||||
email: admin@molgenis.org
|
||||
|
||||
ingress:
|
||||
enabled: true
|
||||
enabled: false
|
||||
annotations: {}
|
||||
# kubernetes.io/ingress.class: nginx
|
||||
# kubernetes.io/tls-acme: "true"
|
Binary file not shown.
@ -1,15 +0,0 @@
|
||||
# MOLGENIS - HTTPD Helm Chart
|
||||
|
||||
HTTPD (web)server for kubernetes to deploy on a kubernetes cluster with NFS-share
|
||||
|
||||
## Chart Details
|
||||
|
||||
This chart will deploy:
|
||||
|
||||
- 1 HTTPD container
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
etc.
|
||||
|
||||
|
@ -1,31 +0,0 @@
|
||||
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
|
||||
- variable: httpd.hostname
|
||||
default: "test.molgenis.org"
|
||||
description: "Hostname for your services (comma separated, example: [hostname]:[port])"
|
||||
type: string
|
||||
required: false
|
||||
group: "Apache configuration"
|
||||
label: Hostname
|
||||
- variable: httpd.proxy
|
||||
default: ""
|
||||
description: "Proxy for your services (comma separated, example: [service]:[port]:[path])"
|
||||
type: string
|
||||
required: false
|
||||
group: "Apache configuration"
|
||||
label: Proxy
|
||||
- variable: httpd.redirect
|
||||
default: ""
|
||||
description: "Redirection urls for your services (comma separated, example: [redirection_url])"
|
||||
type: string
|
||||
required: false
|
||||
group: "Apache configuration"
|
||||
label: Redirection
|
@ -1,16 +0,0 @@
|
||||
# MOLGENIS - NEXUS Helm Chart
|
||||
|
||||
NEXUS repository for kubernetes to deploy on a kubernetes cluster with NFS-share
|
||||
|
||||
## Chart Details
|
||||
|
||||
This chart will deploy:
|
||||
|
||||
- 1 NEXUS container
|
||||
- 1 MOLGENIS-httpd container ()to proxy the registry and docker to one domain)
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
etc.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user