diff --git a/tools/kolla-ansible b/tools/kolla-ansible
index 4ee15c2ee315ea9c2fb8f0130d8481f7cee91486..aaef901b5fd207d5965c29690433108165ef3164 100755
--- a/tools/kolla-ansible
+++ b/tools/kolla-ansible
@@ -33,8 +33,9 @@ Options:
     --help, -h                       Show this usage information
 
 Commands:
-    deploy  Deploy and start all kolla containers
-    pull    Pull all images for containers (only pulls, no runnnig container changes)
+    deploy       Deploy and start all kolla containers
+    post-deploy  Do post deploy on deploy node
+    pull         Pull all images for containers (only pulls, no runnnig container changes)
 EOF
 }
 
@@ -83,6 +84,11 @@ case "$1" in
         ACTION="Deploying Playbooks"
         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)
         ACTION="Pulling Docker images"
         CMD="ansible-playbook -i $INVENTORY -e @/etc/kolla/globals.yml -e @/etc/kolla/passwords.yml $PLAYBOOK -e action=pull"