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": "msg", | |
"kind": "Service", | |
"apiVersion": "v1beta1", | |
"port": 5672, | |
"publicIPs": ["10.245.1.3"], | |
"selector": { | |
"name": "msg" | |
} | |
} |
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 | |
# | |
# Configure the Apache daemon and WSGI application | |
# Install SSL certificates | |
# Configure the web tree in the volumes | |
# | |
set -x | |
# Requires environment variables: | |
# |
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]> | |
# | |
# docker run -d --name pulp-apache \ | |
# -v /dev/log:/dev/log --volumes-from pulp-content | |
# -p 443:443 \ | |
# -e PULP_SERVER_NAME=pulp.example.com \ | |
# -e SSL_TARBALL_URL=<url> markllama/pulp-apache | |
# |
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 |