f148f103828f0dddc6ce318a275ae767f2410f03
[bottlenecks.git] / utils / infra_setup / heat / consts / files.py
1 ##############################################################################
2 # Copyright (c) 2016 Huawei Technologies Co.,Ltd and others.
3 #
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9
10 # ------------------------------------------------------
11 # Configuration File
12 # ------------------------------------------------------
13 GENERAL = 'General'
14
15
16 def get_sections():
17     return [
18         GENERAL,
19         # Add here new configurations...
20     ]
21
22
23 def get_sections_api():
24     return [
25         GENERAL,
26         # Add here new configurations...
27     ]
28
29 # ------------------------------------------------------
30 # General section parameters
31 # ------------------------------------------------------
32 ITERATIONS = 'iterations'
33 TEMPLATE_DIR = 'template_dir'
34 TEMPLATE_NAME = 'template_base_name'
35 BENCHMARKS = 'benchmarks'
36 DEBUG = 'debug'