Matt Woodson d4ac3457b1 fixed error in awsutil.py před 9 roky
..
openshift_ansible d4ac3457b1 fixed error in awsutil.py před 9 roky
zsh_functions 407a83b1ce Fixing tab completion for latest metadata changes před 9 roky
README_SHELL_COMPLETION 4b85e4fae0 Support for gce před 9 roky
cluster 2f11e4a8ef Add warnings to bin/cluster and READMEs před 9 roky
ohi 5335c16604 ohi: added subtype searching před 9 roky
openshift_ansible.conf.example 4b85e4fae0 Support for gce před 9 roky
opscp 303305a378 Adding ip address option před 9 roky
opssh 303305a378 Adding ip address option před 9 roky
oscp 8b158eca7c Fix typo in oscp před 9 roky
ossh c5f6db5ddd Add -A parameter to forward ssh agent před 9 roky
ossh_bash_completion f9e2aa24ee Merge branch 'tab_completion' of github.com:kwoodson/openshift-ansible into tab_completion před 9 roky
ossh_zsh_completion 407a83b1ce Fixing tab completion for latest metadata changes před 9 roky

README_SHELL_COMPLETION

# completion is available for ossh/oscp

ossh/oscp uses a dynamic inventory cache in order to lookup
hostnames and translate them to something meaningful
such as an IP address or dns name.

This allows us to treat our servers as cattle and not as pets.

If you have not run the ossh command and it has not laid down
a cache file the completions will not be available.

You can populate the cache by running `ossh --list`. This
will populate the cache file and the completions should
become available.

This script will look at the cached version of your
multi_inventory results in ~/.ansible/tmp/multi_inventory.cache.
It will then parse a few {host}.{env} out of the json
and return them to be completable.

# BASH
In order to setup bash completion, source the following script:
/path/to/repository/openshift-ansible/bin/ossh_bash_completion

# ZSH
In order to setup zsh completion, you will need to verify
that the _ossh_zsh_completion script is somewhere in the path
of $fpath.

Once $fpath includes the _ossh_zsh_completion script then you should
run `exec zsh`. This will then allow you to call `ossh host[TAB]`
for a list of completions.

Before completing the final step, zsh keeps its own cache in
~/.zcompdump of the known functions and variables. In order to
refresh with new variables and completion arrays you might need
to `rm ~/.zcompdump` before running `exec zsh`.