26 lines
497 B
YAML
26 lines
497 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: volume-test
|
|
namespace: default
|
|
spec:
|
|
containers:
|
|
- name: volume-test
|
|
image: nginx:stable-alpine
|
|
imagePullPolicy: IfNotPresent
|
|
volumeMounts:
|
|
- name: voll
|
|
mountPath: /data
|
|
ports:
|
|
- containerPort: 80
|
|
volumes:
|
|
- name: voll
|
|
flexVolume:
|
|
driver: "rancher.io/longhorn"
|
|
fsType: "ext4"
|
|
options:
|
|
size: "2Gi"
|
|
numberOfReplicas: "3"
|
|
staleReplicaTimeout: "20"
|
|
fromBackup: ""
|