Pass extra variables through kolla-ansible to ansible-playbook
Change-Id: I4ddad85aadfac4047460085ec6bc0fcabd718253 Closes-Bug: #1561757
This commit is contained in:
parent
b333f44a53
commit
25393eb28f
@ -34,6 +34,7 @@ Options:
|
|||||||
--keyfile, -k <key_file> Specify path to ansible vault keyfile
|
--keyfile, -k <key_file> Specify path to ansible vault keyfile
|
||||||
--help, -h Show this usage information
|
--help, -h Show this usage information
|
||||||
--tags, -t <tags> Only run plays and tasks tagged with these values
|
--tags, -t <tags> Only run plays and tasks tagged with these values
|
||||||
|
--extra, -e <ansible variables> Set additional variables as key=value or YAML/JSON passed to ansible-playbook
|
||||||
--verbose, -v Increase verbosity of ansible-playbook
|
--verbose, -v Increase verbosity of ansible-playbook
|
||||||
|
|
||||||
Commands:
|
Commands:
|
||||||
@ -48,8 +49,8 @@ EOF
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
SHORT_OPTS="hi:p:t:k:v"
|
SHORT_OPTS="hi:p:t:k:e:v"
|
||||||
LONG_OPTS="help,inventory:,playbook:,tags:,keyfile:,verbose,configdir:"
|
LONG_OPTS="help,inventory:,playbook:,tags:,keyfile:,extra:,verbose,configdir:"
|
||||||
ARGS=$(getopt -o "${SHORT_OPTS}" -l "${LONG_OPTS}" --name "$0" -- "$@") || { usage >&2; exit 2; }
|
ARGS=$(getopt -o "${SHORT_OPTS}" -l "${LONG_OPTS}" --name "$0" -- "$@") || { usage >&2; exit 2; }
|
||||||
|
|
||||||
eval set -- "$ARGS"
|
eval set -- "$ARGS"
|
||||||
@ -96,6 +97,11 @@ while [ "$#" -gt 0 ]; do
|
|||||||
shift 2
|
shift 2
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
(--extra|-e)
|
||||||
|
EXTRA_OPTS="$EXTRA_OPTS -e $2"
|
||||||
|
shift 2
|
||||||
|
;;
|
||||||
|
|
||||||
(--help|-h)
|
(--help|-h)
|
||||||
usage
|
usage
|
||||||
shift
|
shift
|
||||||
|
Loading…
Reference in New Issue
Block a user