change dir structure
This commit is contained in:
29
nexus/v1.0.0/templates/deployment/httpd-deployment.yaml
Normal file
29
nexus/v1.0.0/templates/deployment/httpd-deployment.yaml
Normal file
@@ -0,0 +1,29 @@
|
||||
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: {}
|
||||
32
nexus/v1.0.0/templates/deployment/nexus-deployment.yaml
Normal file
32
nexus/v1.0.0/templates/deployment/nexus-deployment.yaml
Normal file
@@ -0,0 +1,32 @@
|
||||
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: {}
|
||||
|
||||
Reference in New Issue
Block a user