Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- apiVersion: apps/v1
- kind: Deployment
- metadata:
- name: nextcloud
- namespace: default
- labels:
- app: nextcloud
- spec:
- revisionHistoryLimit: 2
- strategy:
- type: RollingUpdate
- replicas: 1
- selector:
- matchLabels:
- app: nextcloud
- template:
- metadata:
- labels:
- app: nextcloud
- spec:
- volumes:
- - name: nextcloud-storage
- persistentVolumeClaim:
- claimName: nextcloud-claim
- containers:
- - image: nextcloud:latest
- name: nextcloud
- volumeMounts:
- - mountPath: "/var/www/html"
- name: nextcloud-storage
- ports:
- - name: http
- containerPort: 80
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement