Code Review
/
nonrtric.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
review
|
tree
history
|
raw
|
HEAD
Integrated gateway and updated kube support
[nonrtric.git]
/
test
/
simulator-group
/
ecs
/
pv.yaml
1
apiVersion: v1
2
kind: PersistentVolume
3
metadata:
4
name: $ECS_DATA_PV_NAME
5
labels:
6
run: $ECS_APP_NAME
7
autotest: ECS
8
spec:
9
storageClassName: ecs-standard
10
capacity:
11
storage: 1Mi
12
accessModes:
13
- ReadWriteOnce
14
persistentVolumeReclaimPolicy: Delete
15
hostPath:
16
path: "/tmp/$ECS_PV_PATH"