summaryrefslogtreecommitdiffstats
path: root/docker-compose/create-compose.py
blob: 7f971f1cbe6b307cfb86a4aae2d008d7d4e80b79 (plain)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
from builtins import input
import readline
readline.parse_and_bind("tab: complete")

content = '''# Copyright (c) 2017 Dell EMC and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################

version: '2'
services:
    storperf-master:
        container_name: "storperf-master"
        image: "opnfv/storperf-master:{storperf_tag}"
        ports:
            - "8000:8000"
        env_file: {ENV_FILE}
        volumes:
            - {CARBON_DIR}:/opt/graphite/storage/whisper

    storperf-reporting:
        container_name: "storperf-reporting"
        image: "opnfv/storperf-reporting:{reporting_tag}"
        ports:
            - "5080:5000"

    storperf-swaggerui:
        container_name: "storperf-swaggerui"
        image: "schickling/swagger-ui"

    storperf-httpfrontend:
        container_name: "storperf-httpfrontend"
        image: "opnfv/storperf-httpfrontend:{frontend_tag}"
        ports:
            - "5000:5000"
        links:
            - storperf-master
            - storperf-reporting
            - storperf-swaggerui

'''
storeperf_tag = input("Enter image TAG for storperf-master: ") or 'latest'
assert isinstance(storeperf_tag, str)

reporting_tag = input("Enter image TAG for reporting: ") or 'latest'
assert isinstance(reporting_tag, str)

frontend_tag = input("Enter image TAG for frontend: ") or 'latest'
assert isinstance(frontend_tag, str)

env_file = input("Enter path to environment file: ")
assert isinstance(env_file, str)
if env_file == '':
    print("Did not specify environment file")
    exit(0)

carbon_dir = input("Enter path to Carbon: ")
assert isinstance(carbon_dir, str)
if carbon_dir == '':
    print("Did not specify Carbon Directory")
    exit(0)

f = open('docker-compose.yaml', 'w')
f.write(content.format(storperf_tag=storeperf_tag, reporting_tag=reporting_tag,
                       frontend_tag=frontend_tag, CARBON_DIR=carbon_dir, ENV_FILE=env_file))

f.close()