Skip to content

Instantly share code, notes, and snippets.

@sfowl
Created July 12, 2021 06:34
Show Gist options
  • Save sfowl/5da533002a45dfbb6407b7dbc040c934 to your computer and use it in GitHub Desktop.
Save sfowl/5da533002a45dfbb6407b7dbc040c934 to your computer and use it in GitHub Desktop.
{
"kind": "Pod",
"apiVersion": "v1",
"metadata": {
"name": "sleep",
"creationTimestamp": null,
"labels": {
"name": "sleep"
}
},
"spec": {
"containers": [
{
"name": "sleep",
"command": ["sleep", "infinity"],
"image": "ubi8/ubi",
"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