aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/tools/install/database/schemaTemplates/questionnaire/compute.ftl
blob: 3dc85cf192c0312f92f48aa46b233e67dae66ba2 (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
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "vmSizing": {
      "type": "object",
      "properties": {
        "numOfCPUs": {
          "type": "number",
          "minimum": 0,
          "exclusiveMinimum": true,
          "maximum": 16,
          "default": 2
        },
        "fileSystemSizeGB": {
          "type": "number",
          "minimum": 0,
          "exclusiveMinimum": true,
          "default": 5
        },
        "persistentStorageVolumeSize": {
          "type": "number",
          "minimum": 0,
          "exclusiveMinimum": true
        },
        "ioOperationsPerSec": {
          "type": "number",
          "minimum": 0,
          "exclusiveMinimum": true
        },
        "cpuOverSubscriptionRatio": {
          "type": "string",
          "enum": [
            "1:1",
            "4:1",
            "16:1"
          ],
          "default": "4:1"
        },
        "memoryRAM": {
          "type": "string",
          "enum": [
            "1",
            "2",
            "4",
            "8"
          ],
          "default": "1"
        }
      },
      "additionalProperties": false
    }
  }
}