| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
Remove cockpit and kubernetes-client packages in uninstall playbook.
|
| | |
|
|/ |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| | |
libvirt: Upgrade to CentOS-7-x86_64-GenericCloud-1602.
|
| | |
|
| |
| |
| |
| | |
which the checksum currently expects (#1384).
|
|\ \
| | |
| | | |
configure debug_level for master and node from cli
|
| | | |
|
|\ \ \
| |_|/
|/| | |
Add missing is_atomic condition in the upgrade playbook
|
| | |
| | |
| | |
| | |
| | | |
* Update playbooks/common/openshift-cluster/upgrades/v3_1_minor/upgrade.yml
* Change is_atomic by is_containerized in order to take care about container openshift without atomic
|
| | |
| | |
| | |
| | |
| | | |
* Update playbooks/common/openshift-cluster/upgrades/v3_1_minor/upgrade.yml
* Add when not is_atomic on yum upgrade on master and node to be able to run the playbook on atomic host
|
|\ \ \
| | | |
| | | | |
remote heal action for OVS down
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Correct parsing of ec2_security_groups env variable
|
| | |/ /
| |/| | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Support for adding new masters
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| |_|_|/
|/| | |
| | | |
| | | | |
jdnieto/openstack_add_master_and_infra_to_node_security_group
Openstack add master and infra to node security group
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The variable's name for deleting the temporary file was a bit
missleading, so it has been renamed to be more explicit.
While the path was hardcoded in /root/, which could be problematic when
the playbook is not run as run.
|
| |/ /
|/| |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
It would be nice to have options to be able to:
* Delete or not the temporary config file - so that it can be check/modified directly
* Create or not the bucket, as you might not have the right to do so
This commit allows both of those things, without changing the default
behavior of the playbook.
|
|\ \ \
| |/ /
|/| | |
Apply openshift_docker to nodes during scaleup.
|
| | | |
|
|\ \ \
| |/ /
|/| | |
Change etcd deamon name for atomic-host in playbooks/adhoc/uninstall.yml
|
| | |
| | |
| | |
| | |
| | |
| | | |
* Update playbooks/adhoc/uninstall.yml
* Etcd run into a container on atomic-host and his name is etcd_container.
We have to stop the container with the right name on atomic host
|
|\ \ \
| | | |
| | | | |
Bug 1308314 - Failed to continue installation when pressing CTRL-C
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
Updating the 3.1.1 router to match the new liveness probe configuration
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Make the GCE image_name and the machine_type configurable from the CLI
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fix issue when there are no infra nodes
|
| |/ / / / |
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
Better structure the output of the list playbook
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The list playbook listed the IPs of the VMs without logging their role like:
```
PLAY [List instance(s)] *******************************************************
TASK: [debug ] ****************************************************************
ok: [lenaic-node-compute-cd81b] => {
"msg": "public ip: 104.155.50.164 private ip:10.55.0.49"
}
ok: [lenaic-master-9e767] => {
"msg": "public ip: 104.155.47.180 private ip:10.55.0.113"
}
ok: [lenaic-node-infra-ab7c8] => {
"msg": "public ip: 104.155.11.34 private ip:10.55.0.131"
}
```
The list playbook now prints the information in a more structured way like:
```
PLAY [List Hosts] *************************************************************
TASK: [debug ] ****************************************************************
ok: [localhost] => {
"msg": {
"lenaic": {
"master": {
"default": [
{
"name": "lenaic-master-9e767",
"private IP": "10.55.0.113",
"public IP": "104.155.47.180"
}
]
},
"node": {
"compute": [
{
"name": "lenaic-node-compute-cd81b",
"private IP": "10.55.0.49",
"public IP": "104.155.50.164"
}
],
"infra": [
{
"name": "lenaic-node-infra-ab7c8",
"private IP": "10.55.0.131",
"public IP": "104.155.11.34"
}
]
}
}
}
}
```
This change of the output of the list playbook was previously done for OpenStack and libvirt
in 332aa8c (#461).
This change makes the GCE output identical to OpenStack and libvirt’s one.
|