Compare commits
No commits in common. "35c7fd79af0e1ac87c281287a37abf612657cc14" and "95dc0acabd70ac15c6faeb6f7189c87972837075" have entirely different histories.
35c7fd79af
...
95dc0acabd
34
molgenis-nexus/templates/deployments/httpd-deployment.yaml
Normal file
34
molgenis-nexus/templates/deployments/httpd-deployment.yaml
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
apiVersion: extensions/v1beta1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
creationTimestamp: null
|
||||||
|
name: {{ .Values.httpd.name }}
|
||||||
|
labels:
|
||||||
|
app: {{ .Values.httpd.name }}
|
||||||
|
environment: {{ .Values.environment }}
|
||||||
|
spec:
|
||||||
|
replicas: {{ .Values.replicaCount }}
|
||||||
|
strategy:
|
||||||
|
type: {{ .Values.httpd.strategy.type }}
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: {{ .Values.httpd.selector }}
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: {{ .Values.httpd.name }}
|
||||||
|
creationTimestamp: null
|
||||||
|
spec:
|
||||||
|
restartPolicy: {{ .Values.httpd.restartPolicy }}
|
||||||
|
containers:
|
||||||
|
- name: {{ .Values.httpd.name }}
|
||||||
|
image: "{{ .Values.httpd.image.repository }}:{{ .Values.httpd.image.tag }}"
|
||||||
|
imagePullPolicy: {{ .Values.httpd.image.pullPolicy }}
|
||||||
|
env:
|
||||||
|
- name: PROXY_SERVICE
|
||||||
|
value: "{{ .Values.nexus.name }}:{{ .Values.nexus.port.ui }},{{ .Values.nexus.name }}:{{ .Values.nexus.port.docker }}:{{ .Values.nexus.path.dockerV2 }}"
|
||||||
|
- name: SERVER_NAME
|
||||||
|
value: {{ .Values.httpd.hostname }}
|
||||||
|
ports:
|
||||||
|
- containerPort: {{ .Values.httpd.port }}
|
||||||
|
resources: {}
|
@ -19,7 +19,18 @@ spec:
|
|||||||
app: {{ .Values.nexus.name }}
|
app: {{ .Values.nexus.name }}
|
||||||
creationTimestamp: null
|
creationTimestamp: null
|
||||||
spec:
|
spec:
|
||||||
|
volumes:
|
||||||
|
- name: {{ .Values.persistence.name }}
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: {{ .Values.persistence.name }}
|
||||||
restartPolicy: {{ .Values.nexus.restartPolicy }}
|
restartPolicy: {{ .Values.nexus.restartPolicy }}
|
||||||
|
initContainers:
|
||||||
|
- name: volume-mount-nexus
|
||||||
|
image: busybox
|
||||||
|
command: ["sh", "-c", "chown -R 200:200 {{ .Values.persistence.mountPath }}"]
|
||||||
|
volumeMounts:
|
||||||
|
- name: {{ .Values.persistence.name }}
|
||||||
|
mountPath: "{{ .Values.persistence.mountPath }}"
|
||||||
containers:
|
containers:
|
||||||
- name: {{ .Values.nexus.name }}
|
- name: {{ .Values.nexus.name }}
|
||||||
image: "{{ .Values.nexus.image.repository }}:{{ .Values.nexus.image.tag }}"
|
image: "{{ .Values.nexus.image.repository }}:{{ .Values.nexus.image.tag }}"
|
||||||
@ -28,31 +39,6 @@ spec:
|
|||||||
- containerPort: {{ .Values.nexus.port.ui }}
|
- containerPort: {{ .Values.nexus.port.ui }}
|
||||||
- containerPort: {{ .Values.nexus.port.docker }}
|
- containerPort: {{ .Values.nexus.port.docker }}
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: molgenis-nexus-nfs
|
- name: {{ .Values.persistence.name }}
|
||||||
mountPath: "/nexus-data"
|
mountPath: "/nexus-data"
|
||||||
livenessProbe:
|
|
||||||
httpGet:
|
|
||||||
path: /
|
|
||||||
port: {{ .Values.nexus.port.ui }}
|
|
||||||
initialDelaySeconds: 90
|
|
||||||
periodSeconds: 20
|
|
||||||
failureThreshold: 5
|
|
||||||
successThreshold: 1
|
|
||||||
readinessProbe:
|
|
||||||
httpGet:
|
|
||||||
path: /
|
|
||||||
port: {{ .Values.nexus.port.ui }}
|
|
||||||
initialDelaySeconds: 90
|
|
||||||
periodSeconds: 5
|
|
||||||
failureThreshold: 5
|
|
||||||
successThreshold: 1
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
- name: molgenis-nexus-nfs
|
|
||||||
persistentVolumeClaim:
|
|
||||||
claimName: {{ .Values.persistence.claim }}
|
|
||||||
|
|
||||||
{{- with .Values.nodeSelector }}
|
|
||||||
nodeSelector:
|
|
||||||
{{ toYaml . | indent 8 }}
|
|
||||||
{{- end }}
|
|
@ -1,55 +0,0 @@
|
|||||||
apiVersion: extensions/v1beta1
|
|
||||||
kind: Deployment
|
|
||||||
metadata:
|
|
||||||
creationTimestamp: null
|
|
||||||
name: {{ .Values.nexusProxy.name }}
|
|
||||||
labels:
|
|
||||||
app: {{ .Values.nexusProxy.name }}
|
|
||||||
environment: {{ .Values.environment }}
|
|
||||||
spec:
|
|
||||||
replicas: {{ .Values.replicaCount }}
|
|
||||||
strategy:
|
|
||||||
type: {{ .Values.nexusProxy.strategy.type }}
|
|
||||||
selector:
|
|
||||||
matchLabels:
|
|
||||||
app: {{ .Values.nexusProxy.selector }}
|
|
||||||
template:
|
|
||||||
metadata:
|
|
||||||
labels:
|
|
||||||
app: {{ .Values.nexusProxy.name }}
|
|
||||||
creationTimestamp: null
|
|
||||||
spec:
|
|
||||||
restartPolicy: {{ .Values.nexusProxy.restartPolicy }}
|
|
||||||
containers:
|
|
||||||
- name: {{ .Values.nexusProxy.name }}
|
|
||||||
image: "{{ .Values.nexusProxy.image.repository }}:{{ .Values.nexusProxy.image.tag }}"
|
|
||||||
imagePullPolicy: {{ .Values.nexusProxy.image.pullPolicy }}
|
|
||||||
env:
|
|
||||||
- name: PROXY_SERVICE
|
|
||||||
value: "{{ .Values.nexus.name }}:{{ .Values.nexus.port.ui }},{{ .Values.nexus.name }}:{{ .Values.nexus.port.docker }}:{{ .Values.nexus.path.dockerV2 }}"
|
|
||||||
- name: SERVER_NAME
|
|
||||||
value: {{ .Values.nexusProxy.hostname }}
|
|
||||||
ports:
|
|
||||||
- containerPort: {{ .Values.nexusProxy.port }}
|
|
||||||
resources: {}
|
|
||||||
livenessProbe:
|
|
||||||
httpGet:
|
|
||||||
path: /
|
|
||||||
port: {{ .Values.nexusProxy.port }}
|
|
||||||
initialDelaySeconds: 90
|
|
||||||
periodSeconds: 5
|
|
||||||
failureThreshold: 5
|
|
||||||
successThreshold: 1
|
|
||||||
readinessProbe:
|
|
||||||
httpGet:
|
|
||||||
path: /
|
|
||||||
port: {{ .Values.nexusProxy.port }}
|
|
||||||
initialDelaySeconds: 90
|
|
||||||
periodSeconds: 5
|
|
||||||
failureThreshold: 5
|
|
||||||
successThreshold: 1
|
|
||||||
|
|
||||||
{{- with .Values.nodeSelector }}
|
|
||||||
nodeSelector:
|
|
||||||
{{ toYaml . | indent 8 }}
|
|
||||||
{{- end }}
|
|
@ -25,8 +25,8 @@ spec:
|
|||||||
paths:
|
paths:
|
||||||
- path: {{ default "/" .path }}
|
- path: {{ default "/" .path }}
|
||||||
backend:
|
backend:
|
||||||
serviceName: {{ $.Values.nexusProxy.name }}
|
serviceName: httpd
|
||||||
servicePort: {{ $.Values.nexusProxy.port }}
|
servicePort: 80
|
||||||
{{- if .tls }}
|
{{- if .tls }}
|
||||||
tls:
|
tls:
|
||||||
- hosts:
|
- hosts:
|
||||||
|
@ -1,15 +0,0 @@
|
|||||||
{{- if .Values.persistence.enabled -}}
|
|
||||||
apiVersion: extensions/v1beta1
|
|
||||||
kind: PersistentVolumeClaim
|
|
||||||
apiVersion: v1
|
|
||||||
metadata:
|
|
||||||
name: {{ .Values.persistence.claim }}
|
|
||||||
annotations:
|
|
||||||
volume.beta.kubernetes.io/storage-class: "nfs-provisioner-retain"
|
|
||||||
spec:
|
|
||||||
accessModes:
|
|
||||||
- ReadWriteMany
|
|
||||||
resources:
|
|
||||||
requests:
|
|
||||||
storage: {{ .Values.persistence.size }}
|
|
||||||
{{- end }}
|
|
13
molgenis-nexus/templates/services/httpd-service.yaml
Normal file
13
molgenis-nexus/templates/services/httpd-service.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: {{ .Values.httpd.name }}
|
||||||
|
labels:
|
||||||
|
app: {{ .Values.httpd.name }}
|
||||||
|
spec:
|
||||||
|
type: {{ .Values.httpd.service.type }}
|
||||||
|
ports:
|
||||||
|
- name: {{ .Values.httpd.name }}
|
||||||
|
port: {{ .Values.httpd.port }}
|
||||||
|
selector:
|
||||||
|
app: {{ .Values.httpd.selector }}
|
@ -1,13 +0,0 @@
|
|||||||
apiVersion: v1
|
|
||||||
kind: Service
|
|
||||||
metadata:
|
|
||||||
name: {{ .Values.nexusProxy.name }}
|
|
||||||
labels:
|
|
||||||
app: {{ .Values.nexusProxy.name }}
|
|
||||||
spec:
|
|
||||||
type: {{ .Values.nexusProxy.service.type }}
|
|
||||||
ports:
|
|
||||||
- name: {{ .Values.nexusProxy.name }}
|
|
||||||
port: {{ .Values.nexusProxy.port }}
|
|
||||||
selector:
|
|
||||||
app: {{ .Values.nexusProxy.selector }}
|
|
16
molgenis-nexus/templates/volumes/nexus-pv.yaml
Normal file
16
molgenis-nexus/templates/volumes/nexus-pv.yaml
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: PersistentVolume
|
||||||
|
metadata:
|
||||||
|
name: {{ .Values.persistence.name }}
|
||||||
|
labels:
|
||||||
|
name: nfs2
|
||||||
|
spec:
|
||||||
|
storageClassName: {{ .Values.persistence.storageClass }}
|
||||||
|
capacity:
|
||||||
|
storage: {{ .Values.persistence.size }}
|
||||||
|
accessModes:
|
||||||
|
- {{ .Values.persistence.accessMode }}
|
||||||
|
persistentVolumeReclaimPolicy: {{ .Values.persistence.reclaimPolicy }}
|
||||||
|
nfs:
|
||||||
|
server: {{ .Values.persistence.server }}
|
||||||
|
path: {{ .Values.persistence.mountPath }}
|
11
molgenis-nexus/templates/volumes/nexus-pvc.yaml
Normal file
11
molgenis-nexus/templates/volumes/nexus-pvc.yaml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
kind: PersistentVolumeClaim
|
||||||
|
apiVersion: v1
|
||||||
|
metadata:
|
||||||
|
name: {{ .Values.persistence.name }}
|
||||||
|
spec:
|
||||||
|
storageClassName: {{ .Values.persistence.storageClass }}
|
||||||
|
accessModes:
|
||||||
|
- {{ .Values.persistence.accessMode }}
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: {{ .Values.persistence.size }}
|
@ -24,12 +24,12 @@ nexus:
|
|||||||
service:
|
service:
|
||||||
type: ClusterIP
|
type: ClusterIP
|
||||||
|
|
||||||
nexusProxy:
|
httpd:
|
||||||
name: nexus-proxy
|
name: httpd
|
||||||
hostname: registry.molgenis.org
|
hostname: registry.molgenis.org
|
||||||
strategy:
|
strategy:
|
||||||
type: Recreate
|
type: Recreate
|
||||||
selector: nexus-proxy
|
selector: httpd
|
||||||
restartPolicy: Always
|
restartPolicy: Always
|
||||||
image:
|
image:
|
||||||
repository: registry.webhosting.rug.nl/molgenis/httpd
|
repository: registry.webhosting.rug.nl/molgenis/httpd
|
||||||
@ -43,22 +43,39 @@ nexusProxy:
|
|||||||
ingress:
|
ingress:
|
||||||
enabled: true
|
enabled: true
|
||||||
annotations: {}
|
annotations: {}
|
||||||
|
# kubernetes.io/ingress.class: nginx
|
||||||
|
# kubernetes.io/tls-acme: "true"
|
||||||
path: /
|
path: /
|
||||||
hosts:
|
hosts:
|
||||||
- name: registry.molgenis.org
|
- name: registry.molgenis.org
|
||||||
tls: []
|
tls: []
|
||||||
|
# - secretName: chart-example-tls
|
||||||
|
# hosts:
|
||||||
|
# - chart-example.local
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
enabled: true
|
name: molgenis-nexus-data
|
||||||
claim: molgenis-nexus
|
storageClass: nfs-class
|
||||||
size: 500Gi
|
size: 30G
|
||||||
|
reclaimPolicy: Retain
|
||||||
|
server: 192.168.64.12
|
||||||
|
accessMode: ReadWriteMany
|
||||||
|
mountPath: /gcc/molgenis/nexus
|
||||||
|
|
||||||
|
|
||||||
resources: {}
|
resources: {}
|
||||||
|
# We usually recommend not to specify default resources and to leave this as a conscious
|
||||||
|
# choice for the user. This also increases chances charts run on environments with little
|
||||||
|
# resources, such as Minikube. If you do want to specify resources, uncomment the following
|
||||||
|
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
|
||||||
|
# limits:
|
||||||
|
# cpu: 100m
|
||||||
|
# memory: 128Mi
|
||||||
|
# requests:
|
||||||
|
# cpu: 100m
|
||||||
|
# memory: 128Mi
|
||||||
|
|
||||||
nodeSelector: {
|
nodeSelector: {}
|
||||||
deployPod: "true"
|
|
||||||
}
|
|
||||||
|
|
||||||
tolerations: []
|
tolerations: []
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user