2018-07-14 08:48:22 +00:00
|
|
|
apiVersion: v1
|
|
|
|
kind: Pod
|
|
|
|
metadata:
|
|
|
|
name: csi-s3-test-nginx
|
2019-05-14 19:53:44 +00:00
|
|
|
namespace: default
|
2018-07-14 08:48:22 +00:00
|
|
|
spec:
|
|
|
|
containers:
|
|
|
|
- name: csi-s3-test-nginx
|
|
|
|
image: nginx
|
|
|
|
volumeMounts:
|
2021-07-19 12:59:56 +00:00
|
|
|
- mountPath: /usr/share/nginx/html/s3
|
2018-07-14 08:48:22 +00:00
|
|
|
name: webroot
|
|
|
|
volumes:
|
|
|
|
- name: webroot
|
|
|
|
persistentVolumeClaim:
|
|
|
|
claimName: csi-s3-pvc
|
|
|
|
readOnly: false
|