| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
apiLevel changes
|
| |
| |
| |
| |
| |
| | |
- remove kubernetesMasterConfig.apiLevels if >= 3.1/1.1
- change apiLevels conditional from using deployment_type to
version_greater_than_3_1_or_1_1
|
|\ \
| | |
| | | |
Fix issue with master.proxy-client.{crt,key} and omit.
|
| | | |
|
|\ \ \
| | | |
| | | | |
Named certificate fixes
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
cleaned up network checks
|
| | | | | |
|
|\| | | |
| | | | |
| | | | | |
cleaned up network checks
|
| | | | | |
|
|\| | | |
| | | | |
| | | | | |
added network checks. also updated item prototype code to support more
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Bug 1278245 - Failed to add node to existing env using atomic-openshift-installer
|
|/ / / / /
| | | | |
| | | | |
| | | | | |
atomic-openshift-installer
|
|\ \ \ \ \
| | | | | |
| | | | | | |
atomic-openshift-installer: Better specification of ansible connection point
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Changes to installer.cfg.yaml to allow for better defaults in unattended mode.
Update example in the docs.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Remove v1beta3 by default for kube_nfs_volumes
|
| | |_|_|_|/
| |/| | | | |
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
Fix data_dir for 3.0 deployments
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fix lb group related errors
|
|/ / / / / |
|
|\ \ \ \ \
| |_|_|/ /
|/| | | | |
exclude atomic-openshift-installer from bin subpackage
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
Native Support for Multi-Master HA
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
controllers will attempt to start
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Bug 1277592 - SDN MTU has hardcoded default
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
- Attempt to detect the MTU of the interface associated with the node IP and
set the default for sdn_mtu accordingly. The value can still be overriden
by users and if detection fails the previous default of 1450 is still used.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
The uninstall playbook needs to remove /run/openshift-sdn
|
| | |_|/ / /
| |/| | | |
| | | | | |
| | | | | |
| | | | | | |
If this isn't removed lbr0 won't be recreated by the Node after the following
install.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Bug 1274201 - Fixing sudo non-interactive test
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
TODO: We desparately need tests cases for:
- interactive with no config file
- interactive with config file and all installed hosts
- interactive with config file and no installed hosts
- interactive with config file and some installed some uninstalled hosts
- unattended with config file and all installed hosts (with and without --force)
- unattended with config file and no installed hosts (with and without --force)
- unattended with config file and some installed some uninstalled hosts (with and without --force)
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Previously the output was a little confusing. We didn't display anything about
the uninstalled hosts.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
all cases
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Previously we were writing out a inventory like this:
~~~
[OSEv3:children]
masters
nodes
[OSEv3:vars]
ansible_ssh_user=root
deployment_type=openshift-enterprise
ansible_connection=local
[masters]
ose3-master.example.com openshift_hostname=ose3-master.example.com
[nodes]
ose3-master.example.com openshift_hostname=ose3-master.example.com
ose3-node1.example.com openshift_hostname=ose3-node1.example.com
ose3-node2.example.com openshift_hostname=ose3-node2.example.com
~~~
The problem with that is now all the hosts are consider local connections. In
addition our sudo check wasn't working as expected. We would check that we
have sudo, but the playbooks were not running with root privileges. When
gathering facts you'd hit:
~~~
__main__.OpenShiftFactsFileWriteError: Could not create fact file: /etc/ansible/facts.d/openshift.fact, error: [Errno 13] Permission denied: '/etc/ansible/facts.d/openshift.fact'
~~~
Instead the test for locale connections needs to be per host. Anytime we're not running as root we need `ansible_become` set:
~~~
ose3-master.example.com openshift_hostname=ose3-master.example.com ansible_connection=local ansible_become=true
~~~
|
|/ / / / /
| | | | |
| | | | |
| | | | | |
https://bugzilla.redhat.com/show_bug.cgi?id=1274201#c13
|