Last active
April 5, 2017 12:02
-
-
Save grkvlt/ab70e2c56fe295920c01164f745b2730 to your computer and use it in GitHub Desktop.
OpenShift Origin cluster on Red Box CentOS machines
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: openshift | |
name: "openshift" | |
description: | | |
Creates an OpenShift Origin cluster with load balanced master servers | |
on CentOS 7 virtual machines | |
location: | |
# aws-eu-central-1 | |
rhel-london-pub-centos | |
# ibm-bluebox-lon-vpn-centos | |
services: | |
- type: openshift-origin-ansible-template | |
id: openshift | |
name: "openshift" | |
brooklyn.config: | |
# configure opesnhift | |
openshift.version: 1.4.1 | |
# configure repave policy | |
openshift.repave.size: 1 | |
openshift.repave.period: 6h | |
openshift.repave.start: 12:00:00 | |
# set cluster size | |
openshift.master.clusterSize: 2 | |
openshift.etcd.clusterSize: 1 | |
openshift.node.clusterSize: 3 | |
# set machine config | |
openshift.master.minCores: 1 | |
openshift.master.minRam: 2000 | |
openshift.node.minCores: 2 | |
openshift.node.minRam: 4000 | |
openshift.etcd.minCores: 1 | |
openshift.etcd.minRam: 2000 | |
openshift.lb.minCores: 1 | |
openshift.lb.minRam: 2000 | |
# set shared machine details | |
openshift.domain: "openshift.local" | |
openshift.ssh.loginUser: "amp" | |
openshift.ssh.privateKeyFile: "~/.ssh/adk.pem" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment