Skip to content
Snippets Groups Projects
Commit 18454628 authored by Torma Kristóf's avatar Torma Kristóf :alien:
Browse files

update static files as well

parent 4ce33832
No related branches found
No related tags found
1 merge request!7update static files as well
---
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