aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/common/mongodb/values.schema.json
blob: 3eb6a64ce7f8d2588fa9f8af6675335d9d18b193 (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
{
  "$schema": "http://json-schema.org/schema#",
  "type": "object",
  "properties": {
    "architecture": {
      "type": "string",
      "title": "MongoDB® architecture",
      "form": true,
      "description": "Allowed values: `standalone` or `replicaset`"
    },
    "auth": {
      "type": "object",
      "title": "Authentication configuration",
      "form": true,
      "properties": {
        "enabled": {
          "type": "boolean",
          "title": "Enable Authentication",
          "form": true
        },
        "rootUser": {
          "type": "string",
          "title": "MongoDB® admin user",
          "form": true,
          "description": "Name of the admin user. Default is root"
        },
        "rootPassword": {
          "type": "string",
          "title": "MongoDB® admin password",
          "form": true,
          "description": "Defaults to a random 10-character alphanumeric string if not set",
          "hidden": {
            "value": false,
            "path": "auth/enabled"
          }
        },
        "database": {
          "type": "string",
          "title": "MongoDB® custom database",
          "description": "Name of the custom database to be created during the 1st initialization of MongoDB®",
          "form": true
        },
        "username": {
          "type": "string",
          "title": "MongoDB® custom user",
          "description": "Name of the custom user to be created during the 1st initialization of MongoDB®. This user only has permissions on the MongoDB® custom database",
          "form": true
        },
        "password": {
          "type": "string",
          "title": "Password for MongoDB® custom user",
          "form": true,
          "description": "Defaults to a random 10-character alphanumeric string if not set",
          "hidden": {
            "value": false,
            "path": "auth/enabled"
          }
        },
        "replicaSetKey": {
          "type": "string",
          "title": "Key used for replica set authentication",
          "form": true,
          "description": "Defaults to a random 10-character alphanumeric string if not set",
          "hidden": {
            "value": "standalone",
            "path": "architecture"
          }
        }
      }
    },
    "replicaCount": {
      "type": "integer",
      "form": true,
      "title": "Number of MongoDB® replicas",
      "hidden": {
        "value": "standalone",
        "path": "architecture"
      }
    },
    "configuration": {
      "type": "string",
      "title": "MongoDB® Custom Configuration",
      "form": true,
      "render": "textArea"
    },
    "arbiter": {
      "type": "object",
      "title": "Arbiter configuration",
      "form": true,
      "properties": {
        "configuration": {
          "type": "string",
          "title": "Arbiter Custom Configuration",
          "form": true,
          "render": "textArea",
          "hidden": {
            "value": "standalone",
            "path": "architecture"
          }
        }
      }
    },
    "networkPolicy": {
      "type": "object",
      "title": "Network policy configuration",
      "form": true,
      "properties": {
        "enabled": {
          "type": "boolean",
          "form": true,
          "title": "Enable network policy",
          "description": "Enable network policy using Kubernetes native NP",
          "hidden": {
            "value": false,
            "path": "networkPolicy/enabled"
          }
        },
        "ingress": {
          "type": "object",
          "properties": {
            "namespaceSelector": {
              "type": "object",
              "title": "Namespace selector label that is allowed to access this instance",
              "hidden": {
                "value": {},
                "path": "networkPolicy/ingress/namespaceSelector"
              }
            },
            "podSelector": {
              "type": "object",
              "title": "Pod selector label that is allowed to access this instance",
              "hidden": {
                "value": {},
                "path": "networkPolicy/ingress/podSelector"
              }
            },
            "customRules": {
              "type": "array",
              "title": "Custom rules for ingress network policy",
              "hidden": {
                "value": [],
                "path": "networkPolicy/ingress/customRules"
              }
            }
          }
        },
        "egress": {
          "type": "object",
          "properties": {
            "customRules": {
              "type": "array",
              "title": "Custom rules for egress network policy",
              "hidden": {
                "value": [],
                "path": "networkPolicy/egress/customRules"
              }
            }
          }
        }
      }
    },
    "persistence": {
      "type": "object",
      "title": "Persistence configuration",
      "form": true,
      "properties": {
        "enabled": {
          "type": "boolean",
          "form": true,
          "title": "Enable persistence",
          "description": "Enable persistence using Persistent Volume Claims"
        },
        "size": {
          "type": "string",
          "title": "Persistent Volume Size",
          "form": true,
          "render": "slider",
          "sliderMin": 1,
          "sliderMax": 100,
          "sliderUnit": "Gi",
          "hidden": {
            "value": false,
            "path": "persistence/enabled"
          }
        }
      }
    },
    "volumePermissions": {
      "type": "object",
      "hidden": {
        "value": false,
        "path": "persistence/enabled"
      },
      "properties": {
        "enabled": {
          "type": "boolean",
          "form": true,
          "title": "Enable Init Containers",
          "description": "Use an init container to set required folder permissions on the data volume before mounting it in the final destination"
        }
      }
    },
    "metrics": {
      "type": "object",
      "form": true,
      "title": "Prometheus metrics details",
      "properties": {
        "enabled": {
          "type": "boolean",
          "title": "Create Prometheus metrics exporter",
          "description": "Create a side-car container to expose Prometheus metrics",
          "form": true
        },
        "serviceMonitor": {
          "type": "object",
          "properties": {
            "enabled": {
              "type": "boolean",
              "title": "Create Prometheus Operator ServiceMonitor",
              "description": "Create a ServiceMonitor to track metrics using Prometheus Operator",
              "form": true,
              "hidden": {
                "value": false,
                "path": "metrics/enabled"
              }
            }
          }
        }
      }
    }
  }
}