| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
Fix ec2 instance type override
|
| | |
|
|\ \
| | |
| | | |
ec2 - force !requiretty for ssh_user
|
| |/ |
|
|\ \
| | |
| | | |
Created role to deploy ops host monitoring
|
| | |
| | |
| | |
| | | |
oso_host_monitoring to config/run host monitoring container(s)
|
|\ \ \
| | | |
| | | | |
Use field numbers for each format in bin/cluster for python 2.6
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
updating to the latest ec2.py (and re-patching with our changes).
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Adding httptest to zabbix library
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
The aep3 images changed locations.
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Correct the case where the first host entered is not a master.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
For now, we should restrict the quick installer to a single master.
This should change in the near future.
|
|\ \ \ \ \ \ \
| |_|_|_|/ / /
|/| | | | | | |
Bug 1282336 - Add additional seboolean for gluster
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
- Added setting seboolean for virt_sandbox_use_fusefs
- Added a failed_when to not fail if virt_sandbox_use_fusefs does not exist
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
atomic-openshift-installer: Correct single master case
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Correct the case where the first host entered is not a master.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
added copr-openshift-ansible releaser, removed old rel-eng stuff.
|
|/ / / / / / / / |
|
|\ \ \ \ \ \ \ \
| |_|_|_|_|_|/ /
|/| | | | | | | |
changed counter -> count in maser items
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| |_|_|_|_|/ / /
|/| | | | | | | |
Adding data_type to zbx_items
|
|/ / / / / / / |
|
|\| | | | | |
| |_|_|_|_|/
|/| | | | | |
updated my check to support the boolean data type
|
| | | | | | |
|
|\| | | | |
| |_|_|_|/
|/| | | | |
added healthz check and more pod count checks
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| / / /
| |/ / / |
atomic-openshift-installer: Temporarily restrict to single master
|
|/ / /
| | |
| | |
| | |
| | | |
For now, we should restrict the quick installer to a single master.
This should change in the near future.
|
|\ \ \
| | | |
| | | | |
openshift-ansible: Correct variable
|
| | | | |
|
|\| | |
| | | |
| | | | |
atomic-openshift-utils: Version lock playbooks
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
Requires the openshift-ansible-playbooks and openshift-ansible-roles to match
atomic-openshift-utils or be newer.
Revise some of the other Requires to be more logical.
|
|\ \ \
| | | |
| | | | |
Add the native ha services and configs to uninstall
|
|/ / / |
|
|\ \ \
| |/ /
|/| | |
Raise lifetime to 2 weeks for dynamic AWS items
|
| | | |
|
|\ \ \
| | | |
| | | | |
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"
}
]
}
}
}
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Fix invalid sudo command test
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
README_AWS: Add needed dependency
|
| |/ / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
bin/cluster fix python 2.6 issue
|