diff --git a/releasenotes/notes/ansible-vault-ac969b70f840d465.yaml b/releasenotes/notes/ansible-vault-ac969b70f840d465.yaml new file mode 100644 index 0000000000000000000000000000000000000000..ff8f7676ad8a14e74263d8318578ad14180f2ad1 --- /dev/null +++ b/releasenotes/notes/ansible-vault-ac969b70f840d465.yaml @@ -0,0 +1,5 @@ +--- +features: + - | + Implemented support for using ansible-vault passwords + in kolla-ansible command to decrypt ``/etc/kolla/passwords.yml``. diff --git a/tools/kolla-ansible b/tools/kolla-ansible index 63692267a5c954c73e64e04a71fbc8ef2027b5df..8c2bd3cd70d4a0f70da3fef03a1ca9e948ecb0ba 100755 --- a/tools/kolla-ansible +++ b/tools/kolla-ansible @@ -43,6 +43,9 @@ Options: --extra, -e <ansible variables> Set additional variables as key=value or YAML/JSON passed to ansible-playbook --passwords <passwords_path> Specify path to the passwords file --limit <host> Specify host to run plays + --vault-id <@prompt or path> Specify @prompt or password file (Ansible >= 2.4) + --ask-vault-pass Ask for vault password + --vault-password-file <path> Specify password file for vault decrypt --verbose, -v Increase verbosity of ansible-playbook Commands: @@ -77,6 +80,9 @@ cat <<EOF --extra -e --passwords --limit +--vault-id +--ask-vault-pass +--vault-password-file --verbose -v prechecks check @@ -97,7 +103,7 @@ EOF } SHORT_OPTS="hi:p:t:k:e:v" -LONG_OPTS="help,inventory:,playbook:,tags:,key:,extra:,verbose,configdir:,passwords:,limit:,yes-i-really-really-mean-it,include-images,include-dev" +LONG_OPTS="help,inventory:,playbook:,tags:,key:,extra:,verbose,configdir:,passwords:,limit:,vault-id:,ask-vault-pass,vault-password-file:,yes-i-really-really-mean-it,include-images,include-dev" ARGS=$(getopt -o "${SHORT_OPTS}" -l "${LONG_OPTS}" --name "$0" -- "$@") || { usage >&2; exit 2; } eval set -- "$ARGS" @@ -170,15 +176,32 @@ while [ "$#" -gt 0 ]; do EXTRA_OPTS="$EXTRA_OPTS -e $2" shift 2 ;; + (--passwords) PASSWORDS_FILE="$2" shift 2 ;; + (--limit) EXTRA_OPTS="$EXTRA_OPTS --limit $2" shift 2 ;; + (--vault-id) + EXTRA_OPTS="$EXTRA_OPTS --vault-id $2" + shift 2 + ;; + + (--ask-vault-pass) + VERBOSITY="$EXTRA_OPTS --ask-vault-pass" + shift 1 + ;; + + (--vault-password-file) + EXTRA_OPTS="$EXTRA_OPTS --vault-password-file $2" + shift 2 + ;; + (--help|-h) usage shift