-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteste_pyyaml_modified.json
More file actions
47 lines (47 loc) · 876 Bytes
/
Copy pathteste_pyyaml_modified.json
File metadata and controls
47 lines (47 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[
{
"apiVersion": "v1",
"kind": "persistentVolume",
"metadata": {
"name": "mongodb-pv",
"labels": {
"type": "local"
}
},
"spec": {
"storageClassName": "hostpath"
},
"capacity": {
"storage": "none"
},
"accessModes": [
"ReadWriteOnce",
"ReadOnlyMany"
],
"hostpath": {
"path": "/mnt/data"
}
},
{
"apiVersion": "v1",
"kind": "persistentVolume",
"metadata": {
"name": "mysql-pv",
"labels": {
"type": "local"
}
},
"spec": {
"storageClassName": "hostpath"
},
"capacity": {
"storage": "2Gi"
},
"accessModes": [
"ReadWriteOnce"
],
"hostpath": {
"path": "/mnt/data"
}
}
]