17 lines
318 B
YAML
17 lines
318 B
YAML
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: csi-s3-test-nginx
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: csi-s3-test-nginx
|
||
|
image: nginx
|
||
|
volumeMounts:
|
||
|
- mountPath: /var/lib/www/html
|
||
|
name: webroot
|
||
|
volumes:
|
||
|
- name: webroot
|
||
|
persistentVolumeClaim:
|
||
|
claimName: csi-s3-pvc
|
||
|
readOnly: false
|