31 lines
612 B
YAML
31 lines
612 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: gallery
|
|
labels:
|
|
run: gallery
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
run: gallery
|
|
template:
|
|
metadata:
|
|
labels:
|
|
run: gallery
|
|
spec:
|
|
containers:
|
|
- image: squi/gallery:1.0
|
|
name: gallery
|
|
ports:
|
|
- containerPort: 80
|
|
volumeMounts:
|
|
- mountPath: /var/www/html/Sources
|
|
name: gallery
|
|
restartPolicy: Always
|
|
volumes:
|
|
- name: gallery
|
|
persistentVolumeClaim:
|
|
claimName: gallery
|
|
readOnly: true
|