Skip to content

Instantly share code, notes, and snippets.

@mrunalp
Created May 23, 2015 00:19
Show Gist options
  • Save mrunalp/99b513ae00512dc43e2c to your computer and use it in GitHub Desktop.
Save mrunalp/99b513ae00512dc43e2c to your computer and use it in GitHub Desktop.
/dev/shm sharing
{
"apiVersion": "v1beta2",
"desiredState": {
"manifest": {
"containers": [
{
"image": "kubernetes/pause",
"name": "hello-container1",
"ports": [
{
"containerPort": 8080,
"hostPort": 6061
}
],
"volumeMounts": [
{
"mountPath": "/dev/shm",
"name": "dshm"
}
]
},
{
"image": "kubernetes/pause",
"name": "hello-container2",
"ports": [
{
"containerPort": 8081,
"hostPort": 6062
}
],
"volumeMounts": [
{
"mountPath": "/dev/shm",
"name": "dshm"
}
]
}
],
"id": "hello-openshift",
"version": "v1beta1",
"volumes": [
{
"name": "dshm",
"emptyDir": { "medium": "Memory" }
}
]
}
},
"id": "hello-openshift",
"kind": "Pod",
"labels": {
"name": "hello-openshift"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment