2015-03-26 18:53:21 +00:00
|
|
|
{
|
2015-06-09 23:06:14 +00:00
|
|
|
"apiVersion": "v1",
|
2015-03-26 18:53:21 +00:00
|
|
|
"id": "glusterfs",
|
|
|
|
"kind": "Pod",
|
|
|
|
"metadata": {
|
|
|
|
"name": "glusterfs"
|
|
|
|
},
|
|
|
|
"spec": {
|
|
|
|
"containers": [
|
|
|
|
{
|
|
|
|
"name": "glusterfs",
|
|
|
|
"image": "kubernetes/pause",
|
|
|
|
"volumeMounts": [
|
|
|
|
{
|
|
|
|
"mountPath": "/mnt/glusterfs",
|
|
|
|
"name": "glusterfsvol"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"volumes": [
|
|
|
|
{
|
|
|
|
"name": "glusterfsvol",
|
|
|
|
"glusterfs": {
|
|
|
|
"endpoints": "glusterfs-cluster",
|
|
|
|
"path": "kube_vol",
|
|
|
|
"readOnly": true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2015-06-09 23:06:14 +00:00
|
|
|
}
|