summaryrefslogtreecommitdiffstats
path: root/dovetail/conf/cmd_config.yml
blob: 03455be11324326f141ae865e2a21fd5997db21a (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

@media only all and (prefers-color-scheme: dark) {
.highlight .hll { background-color: #49483e }
.highlight .c { color: #75715e } /* Comment */
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
.highlight .k { color: #66d9ef } /* Keyword */
.highlight .l { color: #ae81ff } /* Literal */
.highlight .n { color: #f8f8f2 } /* Name */
.highlight .o { color: #f92672 } /* Operator */
.highlight .p { color: #f8f8f2 } /* Punctuation */
.highlight .ch { color: #75715e } /* Comment.Hashbang */
.highlight .cm { color: #75715e } /* Comment.Multiline */
.highlight .cp { color: #75715e } /* Comment.Preproc */
.highlight .cpf { color: #75715e } /* Comment.PreprocFile */
.highlight .c1 { color: #75715e } /* Comment.Single */
.highlight .cs { color: #75715e } /* Comment.Special */
.highlight .gd { color: #f92672 } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gi { color: #a6e22e } /* 
---
cli:
  arguments:
    config:
      # 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'
      #   path:
      #     - 'functest/docker_tag'
      #     - 'yardstick/docker_tag'
    control:

  options:
    config:
      yard_tag:
        flags:
          - '--yard_tag'
          - '-y'
        path:
          - 'yardstick/docker_tag'
        help: 'Overwrite tag for yardstick docker container (e.g. danube.3.2)'
      func_tag:
        flags:
          - '--func_tag'
          - '-f'
        path:
          - 'functest/docker_tag'
        help: 'Overwrite tag for functest docker container (e.g. ovp.1.0.0)'
      # bott_tag:
      #   flags:
      #     - '--bott_tag'
      #     - '-b'
      #   path:
      #     - 'bottlenecks/docker_tag'
      #   help: 'Overwrite tag for bottlenecks docker container (e.g. cvp.0.4.0)'
    control:
      testsuite:
        flags:
          - '--testsuite'
        default: 'ovp.1.0.0'
        help: 'compliance testsuite.'
      testarea:
        flags:
          - '--testarea'
        multiple: 'True'
        help: 'compliance testarea within testsuite'
      debug:
        flags:
          - '--debug'
          - '-d'
        is_flag: 'True'
        help: 'Flag for showing debug log on screen.'
      report:
        flags:
          - '--report'
          - '-r'
        help: 'push results to DB (e.g. --report http://192.168.135.2:8000/api/v1/results)'
      offline:
        flags:
          - '--offline'
        is_flag: 'True'
        help: 'run in offline method, which means not to update the docker upstream images, functest, yardstick, etc.'