summaryrefslogtreecommitdiffstats
path: root/dovetail/conf/cmd_config.yml
blob: 2d51f88dd3db7dd12e7d766127ff8e08f6347ac6 (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
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).'
      DEBUG:
        flags:
          - '--DEBUG'
          - '-d'
        help: 'DEBUG for showing debug log.'
    non-envs:
      scenario:
        flags:
          - '--scenario'
          - '-s'
        default: 'compliance_set'
        help: 'certification scenario.'
      tag:
        flags:
          - '--tag'
          - '-o'
        help: 'Overwrite tags for each docker container (e.g. "functest:stable,yardstick:latest")'