-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtransible.py
executable file
·40 lines (36 loc) · 1.63 KB
/
transible.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/python3
import argparse
import sys
from transible.plugins.os_ansible.openstack_ansible import OpenstackAnsible
from transible.plugins.aws_ansible.amazon_ansible import AmazonAnsible
from transible.plugins.az_ansible.azure_ansible import AzureAnsible
def main():
parser = argparse.ArgumentParser(__doc__)
parser.add_argument('-f', '--from', dest="from_cloud",
default="openstack",
choices=["openstack", "aws", "azure"],
help='Cloud type to read configuration from')
parser.add_argument('-t', '--to', dest="to",
default="ansible",
choices=["ansible"],
help='Deplyment tool')
parser.add_argument('--os-cloud', dest="cloud_name",
default="",
help='Openstack cloud name from clouds.yaml')
parser.add_argument('--from-file', dest="from_file",
default="",
help="Data from file")
args = parser.parse_args()
if args.from_cloud == "openstack" and args.to == "ansible":
if not args.cloud_name:
print("Please provide the cloud name for Openstack")
sys.exit(1)
OpenstackAnsible(args.cloud_name, from_file=args.from_file).run()
elif args.from_cloud == "aws" and args.to == "ansible":
AmazonAnsible(from_file=args.from_file).run()
elif args.from_cloud == "azure" and args.to == "ansible":
AzureAnsible(from_file=args.from_file).run()
else:
print("Configuration is not supported yet")
if __name__ == "__main__":
main()