Created
September 26, 2014 13:53
-
-
Save markllama/81c4333b298522ce6507 to your computer and use it in GitHub Desktop.
The JSON description of a Pulp Beat container for Kubernetes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "pulp-beat", | |
"desiredState": { | |
"manifest": { | |
"version": "v1beta1", | |
"id": "pulp-beat", | |
"containers": [{ | |
"name": "pulp-beat", | |
"image": "markllama/pulp-beat", | |
"env": [{ | |
"name": "PULP_SERVER_NAME", | |
"value": "pulp.example.com" | |
}], | |
"volumeMounts": [{ | |
"name": "devlog", | |
"readOnly": false, | |
"mountPath": "/dev/log" | |
}], | |
}], | |
"volumes": [{ | |
"name": "devlog", | |
"source": {"hostDir": {"path": "/dev/log"}} | |
}] | |
} | |
}, | |
"labels": { | |
"name": "pulp-beat" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment