Advertisement
Guest User

Untitled

a guest
Oct 4th, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. include ../common/Makedefs
  2.  
  3. CONFIG_DIR:=$(shell pwd)
  4. DOCKER_COMPOSE_YML=./onboarding-docker-compose/docker-compose.yml
  5. BOOTSTRAP_YML=./docker-compose-bootstrap.yml
  6. DOCKER_PROJECT=mcord
  7. BOOTSTRAP_PROJECT=mcordbs
  8. XOS_BOOTSTRAP_PORT=81
  9. XOS_UI_PORT=80
  10. ADMIN_USERNAME=padmin@vicci.org
  11. ADMIN_PASSWORD=letmein
  12. RUN_TOSCA_BOOTSTRAP=python ../common/run_tosca.py $(XOS_BOOTSTRAP_PORT) $(ADMIN_USERNAME) $(ADMIN_PASSWORD)
  13. RUN_TOSCA=python ../common/run_tosca.py $(XOS_UI_PORT) $(ADMIN_USERNAME) $(ADMIN_PASSWORD)
  14.  
  15. node_label:
  16. @echo "[ORANGE BOX CONFIG]"
  17. $(RUN_TOSCA) node_label.yaml
  18.  
  19. subscriber:
  20. @echo "[ORANGE BOX SUBSCRIBER]"
  21. $(RUN_TOSCA) orange-box-subscriber.yaml
  22.  
  23. # Create the node if not exist (for testing)
  24. node:
  25. @echo "[CREATING TEST NODE]"
  26. $(RUN_TOSCA) node.yaml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement