summaryrefslogtreecommitdiffstats
path: root/dovetail/conf/cmd_config.yml
blob: 35c000efa488130b7bdf4e846436a71967349dcd (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
cli:
  arguments:
    envs:
      # This is a simple example of arguments.
      # Dovetail has no need of this kind of parameters currently.
      # The arguments must be given orderly at the run-time.
      #
      # docker_tag:
      #   flags: 'docker_tag'
    non-envs:

  options:
    envs:
      SUT_TYPE:
        flags:
          - '--SUT_TYPE'
          - '-t'
        help: 'Installer type of the system under test (SUT).'
      SUT_IP:
        flags:
          - '--SUT_IP'
          - '-i'
        help: 'IP of the system under test (SUT).'
      DEPLOY_SCENARIO:
        flags:
          - '--DEPLOY_SCENARIO'
          - '-S'
        help: 'DEPLOY_SCENARIO of the system under test (SUT).'
      DEPLOY_TYPE:
        flags:
          - '--DEPLOY_TYPE'
          - '-T'
        help: 'DEPLOY_TYPE of the system under test (SUT).'
      CON_DEBUG:
        flags:
          - '--CON_DEBUG'
          - '-c'
        help: 'True for showing debug log in functest/yardstick container.'
    non-envs:
      testsuite:
        flags:
          - '--testsuite'
        default: 'compliance_set'
        help: 'compliance testsuite.'
      testarea:
        flags:
          - '--testarea'
        default: 'full'
        help: 'compliance testarea within testsuite'
      tag:
        flags:
          - '--tag'
          - '-o'
        help: 'Overwrite tags for each docker container (e.g. "functest:stable,yardstick:latest")'
      debug:
        flags:
          - '--debug'
          - '-d'
        help: 'True for showing debug log in screen.'