12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- apiVersion: extensions/v1beta1
- kind: Deployment
- metadata:
- annotations:
- io.rancher.container.pull_image: always
- kompose.cmd: migration-tools parse --docker-file docker-compose.yml --rancher-file
- rancher-compose.yml
- kompose.version: 1.16.0 (HEAD)
- creationTimestamp: null
- labels:
- io.kompose.service: nextcloud-db
- name: nextcloud-db
- spec:
- replicas: 0
- strategy:
- type: Recreate
- template:
- metadata:
- creationTimestamp: null
- labels:
- io.kompose.service: nextcloud-db
- spec:
- containers:
- - env:
- - name: MYSQL_DATABASE
- value: nextcloud
- - name: MYSQL_PASSWORD
- value: qT2QyZGcJ6KPfnph
- - name: MYSQL_ROOT_PASSWORD
- value: qT2QyZGcJ6KPfnph
- - name: MYSQL_USER
- value: nextcloud
- image: mariadb:10
- name: nextcloud-db
- resources:
- limits:
- memory: 262144e3
- volumeMounts:
- - mountPath: /var/lib/mysql
- name: nextcloud-db-claim0
- restartPolicy: Always
- volumes:
- - name: nextcloud-db-claim0
- persistentVolumeClaim:
- claimName: nextcloud-db-claim0
- status: {}
|