| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
| |
In faster environments (i.e. all local VMs) etcd nodes could come online at
roughly the same time leading to conflicts with self-elections, resulting in a
non-functional cluster.
To solve we configure the first etcd host by itself, then configure the
remaining ones in parallel to keep things as fast as possible.
|
|\
| |
| | |
Add etcd nodes management in OpenStack
|
| |
| |
| |
| | |
Fixes #472
|
|\ \
| | |
| | | |
added upgrade playbook for online
|
| | | |
|
|\ \ \
| | | |
| | | | |
Adding ManageIQ service account
|
| | | |
| | | |
| | | |
| | | | |
Signed-off-by: enoodle <efreiber@redhat.com>
|
|\ \ \ \
| | | | |
| | | | | |
Refactor dns options and facts
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fedora changes:
|
| | |_|/ /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
- ansible bootstrap playbook for Fedora 23+
- add conditionals to handle yum vs dnf
- add Fedora OpenShift COPR
- update BYO host README for repo configs and fedora bootstrap
Fix typo in etcd README, remove unnecessary parens in openshift_node main.yml
rebase on master, update package cache refresh handler for yum vs dnf
Fix typo in etcd README, remove unnecessary parens in openshift_node main.yml
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
Fix ec2 instance type lookups
|
| | | | | |
|
| |/ / /
|/| | | |
|
| | | | |
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Add -q flag to remove unwantend output (such as mirror and cache information)
|
| |/ /
| | |
| | |
| | | |
This prevents ansible failures when trying to set version facts
|
|\ \ \
| | | |
| | | | |
Use admin.kubeconfig when obtaining kubernetes service ip
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
Uninstall: only restart docker on node hosts.
|
| |/ / |
|
|/ /
| |
| |
| | |
Signed-off-by: Federico Simoncelli <fsimonce@redhat.com>
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| | |
- modify evaluate host to set oo_nodes_to_config to a new variable
g_new_nodes_group if defined rather than g_nodes_group and also skip adding
the master when g_new_nodes_group is set.
- Remove byo specific naming from playbooks/common/openshift-cluster/scaleup.yml
and created a new playbooks/byo/openshift-cluster/scaleup.yml playbook.
|
| |
| |
| |
| |
| | |
- uses the value of oauthConfig.masterCA if present, otherwise sets it to
ca.crt
|
|\ \
| | |
| | | |
Making the uninstall playbook more flexible
|
| | |
| | |
| | |
| | |
| | | |
This handles stage environments as well as the eventual change of aep3_beta to
aep3
|
| | | |
|
|\ \ \
| | | |
| | | | |
Differentiate machine types on GCE (master and nodes)
|
| | | | |
|
|\ \ \ \
| |_|/ /
|/| | | |
Docker on master aws
|
| | | | |
|
| | | | |
|
|\ \ \ \
| |_|/ /
|/| | | |
Refactor named certficates
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Uninstall - Remove systemd wants file for node
|
| | |/ /
| |/| | |
|
|\ \ \ \
| | | | |
| | | | | |
Fix ec2 instance type override
|
| |/ / / |
|
|/ / / |
|
|/ / |
|
|\ \
| | |
| | | |
Better structure the output of the list playbook
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The list playbook listed the IPs of the VMs without logging their role like:
TASK: [debug ] ************************************************************
ok: [10.64.109.37] => {
"msg": "public:10.64.109.37 private:192.168.165.5"
}
ok: [10.64.109.47] => {
"msg": "public:10.64.109.47 private:192.168.165.6"
}
ok: [10.64.109.36] => {
"msg": "public:10.64.109.36 private:192.168.165.4"
}
ok: [10.64.109.215] => {
"msg": "public:10.64.109.215 private:192.168.165.2"
}
The list playbook now prints the information in a more structured way with
a list of masters, a list of nodes and the subtype of the nodes like:
TASK: [debug ] ************************************************************
ok: [localhost] => {
"msg": {
"lenaicnewlist": {
"master": [
{
"name": "10.64.109.215",
"private IP": "192.168.165.2",
"public IP": "10.64.109.215",
"subtype": "default"
}
],
"node": [
{
"name": "10.64.109.47",
"private IP": "192.168.165.6",
"public IP": "10.64.109.47",
"subtype": "compute"
},
{
"name": "10.64.109.37",
"private IP": "192.168.165.5",
"public IP": "10.64.109.37",
"subtype": "compute"
},
{
"name": "10.64.109.36",
"private IP": "192.168.165.4",
"public IP": "10.64.109.36",
"subtype": "infra"
}
]
}
}
}
|