Skip to content
Snippets Groups Projects
Commit 6597d536 authored by Rafael László's avatar Rafael László :speech_balloon:
Browse files

Merge branch 'tormakris-master-patch-06379' into 'master'

update static files as well

See merge request !7
parents 4ce33832 18454628
No related branches found
Tags 1.0.8
1 merge request!7update static files as well
Pipeline #5958 passed
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: apache-static
namespace: devteam-kszk-bme-hu
spec:
replicas: 1
selector:
matchLabels:
app: apache-kszkepzes
template:
metadata:
labels:
app: apache-kszkepzes
spec:
initContainers:
- name: volume-mount-hack
image: busybox
command: ['sh', '-c', 'chown -R 1000:1000 /staticfiles']
volumeMounts:
- name: kszkepzes-static-volume
mountPath: /staticfiles
- name: kszkepzes-backend-collectstatic
image: registry.kszk.bme.hu/kszk/devteam/kszkepzes-backend:##IMAGETAG##
imagePullPolicy: 'Always'
command: ['python', 'manage.py', 'collectstatic', '--noinput']
volumeMounts:
- mountPath: /home/app/kszkepzes-backend/staticfiles
name: kszkepzes-static-volume
envFrom:
- configMapRef:
name: kszkepzes-config
- secretRef:
name: kszkepzes-secret-config
- name: volume-mount-hack-backwards
image: busybox
command: ['sh', '-c', 'chown -R 0:0 /staticfiles']
volumeMounts:
- name: kszkepzes-static-volume
mountPath: /staticfiles
containers:
- name: apache-kszkepzes
image: httpd:2
imagePullPolicy: 'Always'
volumeMounts:
- mountPath: /usr/local/apache2/htdocs/staticfiles
name: kszkepzes-static-volume
ports:
- containerPort: 80
volumes:
- name: kszkepzes-static-volume
persistentVolumeClaim:
claimName: kszkepzes-static-pv-claim
imagePullSecrets:
- name: kszkepzes-regcred
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: kszkepzes-backend
namespace: devteam-kszk-bme-hu
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment