README_GCE.txt 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. GCE Setup Instructions
  2. Get a gce service key
  3. ---------------------
  4. 1. ping twiest and ask for a GCE service key
  5. Convert a GCE service key into a pem (for ansible)
  6. --------------------------------------------------
  7. 1. The gce service key looks something like this: os302gce-ef83bd90f261.p12
  8. 2. the ef83bd90f261 part is the public hash
  9. 3. Be in the same directory as the p12 key file.
  10. 4. The commands below should be copy / paste-able
  11. 5. Run these commands:
  12. # Temporarily set hash variable
  13. export GCE_KEY_HASH=ef83bd90f261
  14. # Convert the service key (note: 'notasecret' is literally what we want here)
  15. openssl pkcs12 -in os302gce-${GCE_KEY_HASH}.p12 -passin pass:notasecret -nodes -nocerts | openssl rsa -out os302gce-${GCE_KEY_HASH}.pem
  16. # Move the converted service key to the .ssh dir
  17. mv os302gce-${GCE_KEY_HASH}.pem ~/.ssh
  18. # Set a sym link so it's easy to reference
  19. ln -s ~/.ssh/os302gce-${GCE_KEY_HASH}.pem ~/.ssh/os302gce_priv_key.pem
  20. 6. Once this is done, put the original service key file (os302gce-ef83bd90f261.p12) somewhere safe, or delete it (your call, I don't know what else we'll use it for, and we can always regen it if needed)
  21. Install Dependencies (not needed for ctl1)
  22. ------------------------------------------
  23. 1. Ansible requires libcloud for gce operations:
  24. yum install -y ansible python-libcloud
  25. Test The Setup
  26. --------------
  27. 1. cd li-ops/cloud
  28. 2. Try to list all instances:
  29. ./cloud.rb gce list
  30. 3. Try to create an instance:
  31. ./cloud.rb gce launch -n ${USER}-minion1 -e int --type os3-minion