| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
- refactor node and master restart handlers to avoid 30s pauses
|
|\
| |
| | |
Conditionally include openshift_router role
|
| | |
|
|\ \
| | |
| | | |
Update examples-sync.sh
|
| | | |
|
| |/
| |
| | |
Fixes: https://github.com/openshift/openshift-ansible/issues/722
|
|\ \
| | |
| | | |
Adjust the logic as to when examples are deployed
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Remove pylint comment from Sha-Bang. SSH process get hung when calling python
|
| | |/
| |/|
| | |
| | | |
python # pylint: disable=too-many-lines
|
|\ \ \
| |/ /
|/| | |
Fix yaml tabbing
|
|/ / |
|
|\ \
| | |
| | | |
Support HA or single router. Deploy after service accounts are created
|
| | | |
|
|\ \ \
| | | |
| | | | |
Adding delta to zbx_item
|
| | | | |
|
|\ \ \ \
| |_|/ /
|/| | | |
Add UDP 4789 firewall rule when using the SDN
|
| | | | |
|
|\ \ \ \
| | |/ /
| |/| | |
Adding zabbix agent bits zabbix-server
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Add `oadm reconcile-cluster-role-bindings` to upgrade playbook.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Switch to version_compare filter for conditionals.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fix yaml indentation from use_openshift_sdn conditional
|
|/ / / / / |
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
Add cockpit role
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Lookup ansible_ssh_user group for kubeconfig perms
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Fixes #585
|
|\ \ \ \ \ \
| |_|_|_|_|/
|/| | | | | |
Fix libvirt ip issues
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
It was timeouting on slower hardware.
|
| | |_|_|/
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Using bootcmd in cloud-config lead to restarts prior to starting the
systemd-hostnamed, which was probable cause of the failure when DHCP
client was failing to send the hostname, and subsequently, the
ansible-opnshift was not able to identify the VM among the others when
checking DHCP leases. The failure looked like: following
10:17:31 failed: [localhost] => {"attempts": 60, "changed": true, "cmd": "virsh -c qemu:///system net-dhcp-leases openshift-ansible | egrep -c 'experiment-node-compute-453d0|experiment-node-compute-61e16'", "delta": "0:00:00.033061", "end": "2015-10-19 10:17:31.409434", "failed": true, "rc": 0, "start": "2015-10-19 10:17:31.376373", "warnings": []}
10:17:31 stdout: 1
10:17:31 msg: Task failed as maximum retries was encountered
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Allow disabling the network plugin configuration
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This is useful when we want to use a different networking solution
without having any networking plugin code run when the services start
up.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fix env typos
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
added a generic playbook to convert a host from loop back to direct-lvm docker storage.
|
|/ / / / /
| | | | |
| | | | |
| | | | | |
a host from loop back to direct-lvm docker storage.
|
|\| | | |
| | | | |
| | | | | |
Change docs/comments
|
| | | | | |
|
|\| | | |
| | | | |
| | | | | |
Error checking of env vars
|
|/ / / /
| | | |
| | | |
| | | | |
variable lookup.
|
|\ \ \ \
| | | | |
| | | | | |
Update template_openshift_master.yml
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
'setfacl ...' works on Fedora 22 and solves a permissions issue
|
| | | | | |
| | | | | |
| | | | | | |
Issue with the lenaic master qcow image (docs mention Arch currently).
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Fixed GCE playbooks so that they're more like the AWS playbooks.
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Namely the GCE playbooks now:
- Create infra nodes
- Correctly label nodes in OpenShift
- Setup masters as nodes as well (needed for sdn)
- Removed set_infra_launch_facts_tasks.yml as it's not used anymore.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Fix exception handling.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The subcommand of the action was called using os.system. The exit value
of os.system is a 16-bit value. This value was propagated and used as
exit value of the whole `cluster {ACTION}` command without any
modification, resulting in `exit()` being called with value > 255. In
the CPython 2.7 exit(v) with v > 255 behaves like exit(0), which hides
that we had an error during the execution.
This commit removes the error propagation by return value and introduces
using exceptions instead.
|