{
    "apiVersion": "v1",
    "id": "glusterfs-nginx",
    "kind": "Pod",
    "metadata": {
        "name": "glusterfs-nginx"
    },
    "spec": {
        "containers": [
            {
                "name": "glusterfs-nginx",
                "image": "fedora/nginx",
                "volumeMounts": [
                    {
                        "mountPath": "/usr/share/nginx/html/test",
                        "name": "nginxglustervol"
                    }
                ],
                "securityContext": {
                    "capabilities": {},
                    "privileged": true
                }
            }
        ],
        "volumes": [
            {
                "name": "nginxglustervol",
                "glusterfs": {
                    "endpoints": "glusterfs-cluster",
                    "path": "myVol1",
                    "readOnly": false
                }
            }
        ]
    }
}