42 lines
1004 B
YAML
42 lines
1004 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
annotations:
|
|
kompose.cmd: kompose convert -f ../docker-compose.prod.yaml -v
|
|
kompose.version: 1.26.1 (a9d05d509)
|
|
creationTimestamp: null
|
|
labels:
|
|
io.kompose.service: nginx
|
|
name: nginx
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
io.kompose.service: nginx
|
|
strategy:
|
|
type: Recreate
|
|
template:
|
|
metadata:
|
|
annotations:
|
|
kompose.cmd: kompose convert -f ../docker-compose.prod.yaml -v
|
|
kompose.version: 1.26.1 (a9d05d509)
|
|
creationTimestamp: null
|
|
labels:
|
|
io.kompose.service: nginx
|
|
spec:
|
|
containers:
|
|
- image: nginx
|
|
name: nginx
|
|
ports:
|
|
- containerPort: 80
|
|
resources: {}
|
|
volumeMounts:
|
|
- mountPath: /home/app/staticfiles
|
|
name: static-volume
|
|
restartPolicy: Always
|
|
volumes:
|
|
- name: static-volume
|
|
persistentVolumeClaim:
|
|
claimName: static-volume
|
|
status: {}
|