Created
September 29, 2014 23:43
-
-
Save markllama/648671cd28e60e0b88e3 to your computer and use it in GitHub Desktop.
The Kubernetes pod definition for a Pulp Resource Manager
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-resource-manager", | |
"desiredState": { | |
"manifest": { | |
"version": "v1beta1", | |
"id": "pulp-resource-manager", | |
"containers": [{ | |
"name": "pulp-resource-manager", | |
"image": "markllama/pulp-resource-manager", | |
"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-resource-manager" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment