move to higher version
This commit is contained in:
@@ -1,29 +0,0 @@
|
||||
apiVersion: extensions/v1beta1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
creationTimestamp: null
|
||||
name: httpd
|
||||
labels:
|
||||
app: httpd
|
||||
spec:
|
||||
replicas: 1
|
||||
strategy: {}
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: httpd
|
||||
creationTimestamp: null
|
||||
spec:
|
||||
containers:
|
||||
- env:
|
||||
- name: PROXY_SERVICE
|
||||
value: nexus:8081,nexus:5000:v2
|
||||
- name: SERVER_NAME
|
||||
value: httpd:80
|
||||
image: registry.webhosting.rug.nl/molgenis/httpd:lts
|
||||
name: httpd
|
||||
ports:
|
||||
- containerPort: 80
|
||||
resources: {}
|
||||
restartPolicy: Always
|
||||
status: {}
|
||||
@@ -1,32 +0,0 @@
|
||||
apiVersion: extensions/v1beta1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
creationTimestamp: null
|
||||
name: nexus
|
||||
spec:
|
||||
replicas: 1
|
||||
strategy:
|
||||
type: Recreate
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: httpd
|
||||
creationTimestamp: null
|
||||
spec:
|
||||
containers:
|
||||
- image: sonatype/nexus3:latest
|
||||
name: nexus
|
||||
ports:
|
||||
- containerPort: 8081
|
||||
- containerPort: 5000
|
||||
resources: {}
|
||||
volumeMounts:
|
||||
- mountPath: /nexus-data
|
||||
name: molgenis-nexus-data
|
||||
restartPolicy: Always
|
||||
volumes:
|
||||
- name: molgenis-nexus-data
|
||||
persistentVolumeClaim:
|
||||
claimName: molgenis-nexus-data
|
||||
status: {}
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
apiVersion: extensions/v1beta1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: ingress-nexus
|
||||
spec:
|
||||
rules:
|
||||
- host: registry.molgenis.org
|
||||
http:
|
||||
paths:
|
||||
- backend:
|
||||
serviceName: httpd
|
||||
servicePort: 80
|
||||
@@ -1,19 +0,0 @@
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: {{ template "httpd.fullname" . }}
|
||||
labels:
|
||||
app: {{ template "httpd.name" . }}
|
||||
chart: {{ template "httpd.chart" . }}
|
||||
release: {{ .Release.Name }}
|
||||
heritage: {{ .Release.Service }}
|
||||
spec:
|
||||
type: {{ .Values.httpd.type }}
|
||||
ports:
|
||||
- port: {{ .Values.httpd.port }}
|
||||
targetPort: http
|
||||
protocol: TCP
|
||||
name: http
|
||||
selector:
|
||||
app: {{ template "httpd.name" . }}
|
||||
release: {{ .Release.Name }}
|
||||
@@ -1,15 +0,0 @@
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
creationTimestamp: null
|
||||
name: nexus
|
||||
labels:
|
||||
app: nexus
|
||||
spec:
|
||||
ports:
|
||||
- name: "ui"
|
||||
port: 8081
|
||||
- name: "docker"
|
||||
port: 5000
|
||||
selector:
|
||||
app: nexus
|
||||
@@ -1,16 +0,0 @@
|
||||
apiVersion: v1
|
||||
kind: PersistentVolume
|
||||
metadata:
|
||||
name: molgenis-nexus-data
|
||||
labels:
|
||||
name: nfs2
|
||||
spec:
|
||||
storageClassName: nfs-class
|
||||
capacity:
|
||||
storage: 5Gi
|
||||
accessModes:
|
||||
- ReadWriteMany
|
||||
persistentVolumeReclaimPolicy: Retain
|
||||
nfs:
|
||||
server: 192.168.64.10
|
||||
path: /home/gcc/molgenis-nexus-data
|
||||
@@ -1,11 +0,0 @@
|
||||
kind: PersistentVolumeClaim
|
||||
apiVersion: v1
|
||||
metadata:
|
||||
name: molgenis-nexus-data
|
||||
spec:
|
||||
storageClassName: nfs-class
|
||||
accessModes:
|
||||
- ReadWriteMany
|
||||
resources:
|
||||
requests:
|
||||
storage: 5Gi
|
||||
Reference in New Issue
Block a user