1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- 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: koken
- name: koken
- spec:
- replicas: 0
- strategy:
- type: Recreate
- template:
- metadata:
- creationTimestamp: null
- labels:
- io.kompose.service: koken
- spec:
- containers:
- - image: malteo/docker-koken-lemp
- name: koken
- ports:
- - containerPort: 8080
- resources: {}
- stdin: true
- tty: true
- volumeMounts:
- - mountPath: /usr/share/nginx/www
- name: koken-claim0
- - mountPath: /var/lib/mysql
- name: koken-claim1
- restartPolicy: Always
- volumes:
- - name: koken-claim0
- persistentVolumeClaim:
- claimName: koken-claim0
- - name: koken-claim1
- persistentVolumeClaim:
- claimName: koken-claim1
- status: {}
|