Skip to content
Snippets Groups Projects
Commit 3178d3d3 authored by Krish Moodbidri's avatar Krish Moodbidri
Browse files

fixed echo statements syntax for prod instance variables

parent c31913ab
No related branches found
No related tags found
1 merge request!47Integration Testing: Sequential Merge and Validation of Four Feature Branches (PR #43,#44, #45,#46)
......@@ -145,9 +145,10 @@ production-deploy:
- export prod_instance_id=$(openstack floating ip show $prod_floating_ip -c port_details -f value | awk -F', ' '{print $2}' | awk -F"'" '{print $2}')
- export prod_volume=$(openstack server show $prod_instance_id -c volumes_attached -f value | awk -F"'" '{print $4}')
- export prod_queue_volume=$(openstack server show $prod_instance_id -c volumes_attached -f value | awk -F"'" '{print $4}' | awk 'NR==2')
- echo "prod_volume": $prod_volume
- echo "prod_instance_id": $prod_instance_id
- echo "prod_queue_volume": $prod_queue_volume
- echo "prod_volume $prod_volume"
- echo "prod_instance_id $prod_instance_id"
- echo "prod_queue_volume $prod_queue_volume"
- |
eval $(ssh-agent -s)
chmod 400 "${SSH_PRIV_KEY}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment