kolla-ansible: add post-deploy subcommand
It is more convenient to add a subcommand instead of assigning playbook path manually. Change-Id: Ia2f27a0f44eb719b28d5e7f9762dc47186eeb0e6
This commit is contained in:
parent
e09e20cdbe
commit
0e913e6ab5
@ -33,8 +33,9 @@ Options:
|
|||||||
--help, -h Show this usage information
|
--help, -h Show this usage information
|
||||||
|
|
||||||
Commands:
|
Commands:
|
||||||
deploy Deploy and start all kolla containers
|
deploy Deploy and start all kolla containers
|
||||||
pull Pull all images for containers (only pulls, no runnnig container changes)
|
post-deploy Do post deploy on deploy node
|
||||||
|
pull Pull all images for containers (only pulls, no runnnig container changes)
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -83,6 +84,11 @@ case "$1" in
|
|||||||
ACTION="Deploying Playbooks"
|
ACTION="Deploying Playbooks"
|
||||||
CMD="ansible-playbook -i $INVENTORY -e @/etc/kolla/globals.yml -e @/etc/kolla/passwords.yml $PLAYBOOK -e action=deploy"
|
CMD="ansible-playbook -i $INVENTORY -e @/etc/kolla/globals.yml -e @/etc/kolla/passwords.yml $PLAYBOOK -e action=deploy"
|
||||||
;;
|
;;
|
||||||
|
(post-deploy)
|
||||||
|
ACTION="Post-Deploying Playbooks"
|
||||||
|
PLAYBOOK="${BASEDIR}/ansible/post-deploy.yml"
|
||||||
|
CMD="ansible-playbook -i $INVENTORY -e @/etc/kolla/globals.yml -e @/etc/kolla/passwords.yml $PLAYBOOK"
|
||||||
|
;;
|
||||||
(pull)
|
(pull)
|
||||||
ACTION="Pulling Docker images"
|
ACTION="Pulling Docker images"
|
||||||
CMD="ansible-playbook -i $INVENTORY -e @/etc/kolla/globals.yml -e @/etc/kolla/passwords.yml $PLAYBOOK -e action=pull"
|
CMD="ansible-playbook -i $INVENTORY -e @/etc/kolla/globals.yml -e @/etc/kolla/passwords.yml $PLAYBOOK -e action=pull"
|
||||||
|
Loading…
Reference in New Issue
Block a user