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
#!/bin/sh | |
set -x | |
# Inherits script from pulp-base: /configure_pulp_server.sh | |
# | |
# Requires environment variables: | |
# SERVICE_HOST | |
# | |
# DB_SERVICE_HOST |
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
FROM markllama/pulp-base | |
MAINTAINER Mark Lamourine <[email protected]> | |
# | |
# Pulp Worker service - coordinate activities | |
# | |
# Environment Variables: | |
# DB_SERVER_HOST: name or IP address of the MongoDB server | |
# DB_SERVER_PORT: TCP port for MongoDB (default: 27017) | |
# MSG_SERVER_HOST: name or IP address of the qpid server | |
# MSG_SERVER_PORT: TCP port for qpidd (default: 5672) |
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
FROM markllama/pulp-base | |
MAINTAINER Mark Lamourine <[email protected]> | |
# Define and export the Pulp content locations | |
VOLUME ["/var/www", "/var/lib/pulp"] | |
# Run a command that indicates (trivial) success and exits | |
CMD ["/bin/true"] |
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
FROM markllama/pulp-base | |
MAINTAINER Mark Lamourine <[email protected]> | |
VOLUME ["/var/www", "/var/lib/pulp"] | |
CMD ["sleep", "86400"] |
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": [{ |
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
#!/bin/sh | |
set -x | |
# | |
# Use the test_db_available.py script to poll for the DB server | |
# | |
wait_for_database() { | |
DB_TEST_TRIES=12 | |
DB_TEST_POLLRATE=5 |
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
FROM markllama/pulp-base | |
MAINTAINER Mark Lamourine <[email protected]> | |
# | |
# Pulp Resource Manager service - coordinate resource access | |
# | |
# Environment Variables: | |
# DB_SERVER_HOST: name or IP address of the MongoDB server | |
# DB_SERVER_PORT: TCP port for MongoDB (default: 27017) | |
# MSG_SERVER_HOST: name or IP address of the qpid server |
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": [{ |
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
#!/bin/sh | |
set -x | |
# | |
# Use the test_db_available.py script to poll for the DB server | |
# | |
wait_for_database() { | |
DB_TEST_TRIES=12 | |
DB_TEST_POLLRATE=5 |
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
FROM markllama/pulp-base | |
MAINTAINER Mark Lamourine <[email protected]> | |
# | |
# Pulp Celerybeat service - coordinate activities | |
# | |
# Environment Variables: | |
# DB_SERVER_HOST: name or IP address of the MongoDB server | |
# DB_SERVER_PORT: TCP port for MongoDB (default: 27017) | |
# MSG_SERVER_HOST: name or IP address of the qpid server |