summaryrefslogtreecommitdiffstats
path: root/roles/lib_openshift/library
Commit message (Collapse)AuthorAgeFilesLines
* Modified base debug statements. Fixed oc_secret debug/verbose flag. Added ↵Kenny Woodson2017-02-2816-36/+56
| | | | reencrypt for route.
* Adding support for a route with certs and reencrypt.Kenny Woodson2017-02-281-1/+7
|
* Re-generate lib_openshiftScott Dodson2017-02-271-40/+92
|
* Merge pull request #3387 from enj/enj/f/sdn_moduleScott Dodson2017-02-271-0/+1335
|\ | | | | Add SDNValidator Module
| * Add SDNValidator ModuleMonis Khan2017-02-211-0/+1335
| | | | | | | | Signed-off-by: Monis Khan <mkhan@redhat.com>
* | [oc_obj] Move namespace argument to end of command.Andrew Butcher2017-02-2716-32/+32
| |
* | Rebased.Kenny Woodson2017-02-244-4/+4
| |
* | Adding get_env_var to deploymentconfig.Kenny Woodson2017-02-244-51/+52
| |
* | Fixed default variables. Added a fix to generated secret in env var.Kenny Woodson2017-02-244-2/+57
| |
* | Fixing doc for oc_adm_ca_server_cert.Kenny Woodson2017-02-231-2/+2
| |
* | Re-generate lib_openshift and lib_utils librariesScott Dodson2017-02-231-5/+34
| |
* | Merge pull request #3416 from detiber/combinedTestScott Dodson2017-02-2315-75/+510
|\ \ | | | | | | lib_openshift - handle cases where oc binary is not in path
| * | lib_openshift oc file lookup improvementsJason DeTiberus2017-02-2115-192/+471
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Move binary file search to separate method called from constructor - Use six.PY3 instaed of sys.version_info - Combine additional paths with the paths from the environment - For py3 pass the combined paths to shutil.which - For py2 explictly search for existance of file from combined paths instead of using distutils.spawn.find_executable and falling back - Use 'oc adm' instead of 'oadm' - Fix generate_validation test issue - fix tests for oc binary location - add tests for file lookup
| * | roles/lib_openshift: Handle /usr/local/bin/oc with sudoColin Walters2017-02-2113-52/+208
| |/ | | | | | | | | | | | | | | | | | | | | | | The real changes here are in `src/lib/{base,import}.py` remember, the rest is committed to git rather than built for some reason. This is tested on CentOS AH (python2), I haven't yet tested the Python 3 path here. I tried the suggestion in the PR for using Ansible's `module` but AFAICS that would require passing down the `module` variable pretty far down into this code. This implementation seems OK too. Closes: https://github.com/openshift/openshift-ansible/issues/3410
* | Updated for pylint. Fixed create doc.Kenny Woodson2017-02-221-4/+12
| |
* | Attempt to handle router preparation errors.Kenny Woodson2017-02-221-3/+8
| |
* | Fixing the generate tox tests.Kenny Woodson2017-02-221-33/+56
| |
* | Merge pull request #3378 from kwoodson/oadm_caKenny Woodson2017-02-221-0/+1492
|\ \ | | | | | | Adding oc_adm_ca_server_cert to lib_openshift
| * | Moving import to local class.Kenny Woodson2017-02-2214-28/+1
| | |
| * | Removing reference to oadm. Moved parameter under general params.Kenny Woodson2017-02-221-2/+2
| | |
| * | Added backup feature. Fixed a bug with reading the certificate and ↵Kenny Woodson2017-02-2114-12/+58
| | | | | | | | | | | | verifying names. Added force option.
| * | Added copy support when modifying cert and key on existenceKenny Woodson2017-02-211-1/+19
| | |
| * | Small spacing fix.Kenny Woodson2017-02-211-0/+1
| | |
| * | Updated doc and defined defaults for signer_*Kenny Woodson2017-02-211-12/+10
| | |
| * | Removing cmd, fixed docs and comments.Kenny Woodson2017-02-201-84/+69
| | |
| * | Rename of oadm_ca to oc_adm_ca. Decided to whittle down to the direct call, ↵Kenny Woodson2017-02-201-49/+31
| | | | | | | | | | | | server_cert.
| * | Fixing doc.Kenny Woodson2017-02-201-43/+87
| | |
| * | Adding oadm_ca to lib_openshift.Kenny Woodson2017-02-201-0/+1445
| | |
* | | Merge pull request #3429 from ashcrow/remove-no-memberScott Dodson2017-02-2215-503/+840
|\ \ \ | | | | | | | | Removed unrequired no-members
| * | | fix up ruamel.yaml/pyyaml no-member lint errorsJason DeTiberus2017-02-2213-472/+546
| | | |
| * | | Removed unrequired no-members from yedit and generated codeSteve Milner2017-02-2215-135/+398
| | |/ | |/|
* | | Added required_together. Added two minor bug fixes for when data is not passed.Kenny Woodson2017-02-222-6/+10
| | |
* | | if no key, cert, cacert, or default_cert is passed then do not pass to ocKenny Woodson2017-02-211-2/+11
|/ /
* | Removed oadm_ references in doc.Kenny Woodson2017-02-212-2/+2
| |
* | Removed unused code. Made tests executable.Kenny Woodson2017-02-211-25/+6
| |
* | Fixing docs. Fixed default_cert suggestion.Kenny Woodson2017-02-203-38/+87
| |
* | Renamed modules, fixed docs, renamed variables, and cleaned up logic.Kenny Woodson2017-02-207-136/+175
| |
* | Renaming registry and router roles to oc_adm_Kenny Woodson2017-02-202-8/+8
| |
* | Fixing registry doc and suggestions.Kenny Woodson2017-02-202-76/+142
| |
* | Adding router and registry to lib_openshift.Kenny Woodson2017-02-202-0/+5347
|/
* Replace has_key in new modulesSteve Milner2017-02-201-2/+2
| | | | | | | The dict.has_key has been removed in Python 3. However, both Python 2 and 3 support: if needle in dict
* Fixing a bug by removing default debugKenny Woodson2017-02-171-1/+1
|
* String compatibility for python2,3Kenny Woodson2017-02-1713-13/+13
|
* Pleasing the linting gods.Kenny Woodson2017-02-1613-65/+182
|
* Fixed tests for pyyaml vs ruamel. Added import logic. Fixed safe load.Kenny Woodson2017-02-1613-65/+208
|
* Adding fallback support for pyyaml.Kenny Woodson2017-02-1613-169/+390
|
* Fix cases where child classes override OpenShiftCLI valuesJason DeTiberus2017-02-1311-33/+11
|
* Merge pull request #3299 from kwoodson/oc_envScott Dodson2017-02-131-0/+1791
|\ | | | | Adding oc_env to lib_openshift.
| * Fixing docs, linting, and comments.Kenny Woodson2017-02-101-7/+12
| |
| * Pleasing the linting bot.Kenny Woodson2017-02-081-0/+2
| |