You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
351 B
17 lines
351 B
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: vitastor-test-nginx
|
|
namespace: default
|
|
spec:
|
|
containers:
|
|
- name: vitastor-test-nginx
|
|
image: nginx
|
|
volumeMounts:
|
|
- mountPath: /usr/share/nginx/html/s3
|
|
name: data
|
|
volumes:
|
|
- name: data
|
|
persistentVolumeClaim:
|
|
claimName: test-vitastor-pvc
|
|
readOnly: false
|
|
|