Created
July 18, 2015 02:32
-
-
Save markito/a00278b0a3a2c43d9b81 to your computer and use it in GitHub Desktop.
lattice-ssh.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| # @author markito | |
| # Python script that query running lattice containers and allows log in using wsh | |
| # Usage: ./lattice-ssh.py <PATH_TO_LATTICE> | |
| import os | |
| import subprocess | |
| import requests | |
| import sys | |
| import json | |
| lattice_dir = sys.argv[1] | |
| os.chdir(lattice_dir) | |
| print "Lattice directory: %s" % (os.getcwd()) | |
| container_output = subprocess.check_output("vagrant ssh -c 'curl http://127.0.0.1:7777/containers'", shell=True) | |
| doc = json.loads(container_output) | |
| for idx,entry in enumerate(doc["Handles"]): | |
| print "[%i] %s" % (idx,entry) | |
| opt = input("-> Select container #: ") | |
| try: | |
| container_info = subprocess.check_output("vagrant ssh -c 'curl http://127.0.0.1:7777/containers/%s/info'" % (doc["Handles"][opt]), shell=True) | |
| info_doc = json.loads(container_info) | |
| locator_path = info_doc["ContainerPath"] | |
| os.system("vagrant ssh -c 'cd %s && sudo bin/wsh' " % (locator_path)) | |
| except (IndexError): | |
| print "Option invalid." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment