Skip to content

Instantly share code, notes, and snippets.

@rjhowe
Created August 10, 2020 14:48
Show Gist options
  • Save rjhowe/6525fbf323622d13e7939f252ce26d7d to your computer and use it in GitHub Desktop.
Save rjhowe/6525fbf323622d13e7939f252ce26d7d to your computer and use it in GitHub Desktop.
{
"kind": "Pod",
"apiVersion": "v1",
"metadata": {
"name": "hello-openshift",
"creationTimestamp": null,
"labels": {
"app": "hello-openshift"
}
},
"spec": {
"containers": [
{
"name": "hello-openshift",
"image": "openshift/hello-openshift",
"ports": [
{
"containerPort": 8080,
"protocol": "TCP"
}
],
"resources": {},
"volumeMounts": [
{
"name":"tmp",
"mountPath":"/tmp"
}
],
"terminationMessagePath": "/dev/termination-log",
"imagePullPolicy": "IfNotPresent",
"securityContext": {
"capabilities": {},
"privileged": false
}
}
],
"volumes": [
{
"name":"tmp",
"emptyDir": {}
}
],
"restartPolicy": "Always",
"dnsPolicy": "ClusterFirst",
"serviceAccount": ""
},
"status": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment