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
(* PulpIni module for Augeas *) | |
(* Author: Mark Lamourine <[email protected]> *) | |
(* Stolen whole cloth from MySQL by Tim Stoop <[email protected]> *) | |
(* Heavily based on php.aug by Raphael Pinson *) | |
(* <[email protected]> *) | |
(* *) | |
module PulpIni = | |
autoload xfm |
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 fedora:20 | |
MAINTAINER Mark Lamourine <[email protected]> | |
# Pulp uses syslog. All derivative containers must mount /dev/log | |
ADD https://repos.fedorapeople.org/repos/pulp/pulp/fedora-pulp.repo \ | |
/etc/yum.repos.d/fedora-pulp.repo | |
RUN yum groupinstall -y pulp-server && \ | |
yum install -y python-qpid-qmf python-qpid python-pulp-rpm-common && \ |
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
{ | |
"kind": "Service", | |
"apiversion": "v1beta1", | |
"id": "db", | |
"port": 27017, | |
"publicIPs": ["10.245.1.3"], | |
"selector": { | |
"name": "db" | |
}, | |
} |
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
{ | |
"kind": "Pod", | |
"id": "pulpdb", | |
"uid": "4bac8381-8537-11e4-a18b-0800279696e1", | |
"creationTimestamp": "2014-12-16T15:22:06Z", | |
"selfLink": "/api/v1beta1/pods/pulpdb?namespace=default", | |
"resourceVersion": 22, | |
"apiVersion": "v1beta1", | |
"namespace": "default", | |
"labels": { |
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
// Pod is a collection of containers, used as either input (create, update) or as output (list, get). | |
type Pod struct { | |
JSONBase `json:",inline" yaml:",inline"` | |
Labels map[string]string `json:"labels,omitempty" yaml:"labels,omitempty"` | |
DesiredState PodState `json:"desiredState,omitempty" yaml:"desiredState,omitempty"` | |
CurrentState PodState `json:"currentState,omitempty" yaml:"currentState,omitempty"` | |
} |
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": "pulpdb", | |
"kind": "Pod", | |
"apiVersion": "v1beta1", | |
"labels": { | |
"name": "db" | |
}, | |
"desiredState": { | |
"manifest": { | |
"version": "v1beta1", |
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": "pulpdb", | |
"kind": "Pod", | |
"apiVersion": "v1beta1", | |
"desiredState": { | |
"manifest": { | |
"version": "v1beta1", | |
"id": "pulp_db", | |
"containers": [{ | |
"name": "pulp-db", |
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": "pulpmsg", | |
"kind": "Pod", | |
"apiVersion": "v1beta1", | |
"desiredState": { | |
"manifest": { | |
"version": "v1beta1", | |
"id": "pulp_msg", | |
"containers": [{ | |
"name": "pulp-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
FROM fedora:20 | |
MAINTAINER Mark Lamourine <[email protected]> | |
#COMMENT { "description": "Qpid server image", \ | |
# "usage": "docker run -d -p 5672:5672 --name pulp-qpid fedora/qpid" } | |
RUN yum install -y qpid-cpp-server qpid-cpp-server-store python-qpid-qmf python-qpid && \ | |
yum clean all | |
ADD . /.qpidd |
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
## | |
### Basic Defaults | |
## | |
dbpath = /var/lib/mongodb | |
smallfiles = true | |
nohttpinterface = true | |
noprealloc = true |