ceph-csi/examples/rbd/pod-clone.yaml
Niels de Vos 953c33058f deploy: use docker.io for unqualified image names
Images that have an unqualified name (no explicit registry) come from
Docker Hub. This can be made explicit by adding docker.io as prefix. In
addition, the default :latest tag has been added too.

Signed-off-by: Niels de Vos <ndevos@redhat.com>
(cherry picked from commit eaeee8ac3d)
2020-12-02 11:39:38 +05:30

18 lines
345 B
YAML

---
apiVersion: v1
kind: Pod
metadata:
name: csi-rbd-clone-demo-app
spec:
containers:
- name: web-server
image: docker.io/nginx:latest
volumeMounts:
- name: mypvc
mountPath: /var/lib/www/html
volumes:
- name: mypvc
persistentVolumeClaim:
claimName: rbd-pvc-clone
readOnly: false