Skip to content
Snippets Groups Projects

update static files as well

Merged Torma Kristóf requested to merge tormakris-master-patch-06379 into master
1 file
+ 56
0
Compare changes
  • Side-by-side
  • Inline
+ 56
0
---
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
Loading