-
Notifications
You must be signed in to change notification settings - Fork 387
/
Copy pathvalues.schema.json
197 lines (197 loc) · 7.12 KB
/
values.schema.json
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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"replicaCount"
],
"properties": {
"persistence": {
"type": "object",
"properties": {
"volumes": {
"type": "array",
"deprecated": true,
"$comment": "(DEPRECATED) Please use `extraVolumes` instead"
},
"mounts": {
"type": "array",
"deprecated": true,
"$comment": "(DEPRECATED) Please use `extraVolumeMounts` instead"
}
}
},
"networkPolicy": {
"type": "object",
"properties": {
"additionalNetworkPolicys": {
"type": "object",
"deprecated": true,
"$comment": "(DEPRECATED) Please use `networkPolicy.additionalNetworkPolicies` instead"
}
}
},
"OpenShift": {
"type": "object",
"properties": {
"createSCC": {
"type": "boolean",
"deprecated": true,
"$comment": "(DEPRECATED) custom SCC are no longer required, the chart is compatible with default restricted SCCv2"
}
}
},
"jdbcOverwrite": {
"type": "object",
"properties": {
"enable": {
"type": "boolean",
"deprecated": true,
"$comment": "(DEPRECATED) Please use `jdbcOverwrite.enabled` instead"
},
"jdbcPassword": {
"type": "string",
"deprecated": true,
"$comment": "(DEPRECATED) Please use `jdbcOverwrite.jdbcSecretName` along with `jdbcOverwrite.jdbcSecretPasswordKey` instead"
}
}
},
"prometheusMonitoring": {
"type": "object",
"properties": {
"podMonitor": {
"type": "object",
"properties": {
"namespace": {
"type": "string",
"deprecated": true,
"$comment": "(DEPRECATED) This value should not be set, as the PodMonitor's namespace has to match the Release Namespace"
}
}
}
}
},
"nginx": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"deprecated": true,
"$comment": "(DEPRECATED) Please use `ingress-nginx.enabled` instead"
}
}
},
"postgresql": {
"type": "object",
"deprecated": true,
"$comment": "(DEPRECATED) Please use an external database instead of the embedded one. Please visit https://artifacthub.io/packages/helm/sonarqube/sonarqube#production-use-case for more information"
},
"replicaCount": {
"type": "integer",
"enum": [
0,
1
]
},
"jvmOpts": {
"type": "string",
"deprecated": true,
"$comment": "(DEPRECATED) Please use SONAR_WEB_JAVAOPTS or sonar.web.javaOpts"
},
"jvmCeOpts": {
"type": "string",
"deprecated": true,
"$comment": "(DEPRECATED) Please use SONAR_CE_JAVAOPTS or sonar.ce.javaOpts"
},
"livenessProbe": {
"type": "object",
"properties": {
"sonarWebContext": {
"type": "string",
"deprecated": true,
"$comment": "(DEPRECATED) please use sonarWebContext at the value top level"
}
}
},
"startupProbe": {
"type": "object",
"properties": {
"sonarWebContext": {
"type": "string",
"deprecated": true,
"$comment": "(DEPRECATED) please use sonarWebContext at the value top level"
}
}
},
"readinessProbe": {
"type": "object",
"properties": {
"sonarWebContext": {
"type": "string",
"deprecated": true,
"$comment": "(DEPRECATED) please use sonarWebContext at the value top level"
}
}
},
"account": {
"type": "object",
"deprecated": true,
"$comment": "(DEPRECATED) Please use `setAdminPassword` instead",
"properties": {
"adminPassword": {
"type": "string",
"deprecated": true,
"$comment": "(DEPRECATED) please use `setAdminPassword.newPassword` at the value top level"
},
"currentAdminPassword": {
"type": "string",
"deprecated": true,
"$comment": "(DEPRECATED) please use `setAdminPassword.currentPassword` at the value top level"
},
"adminPasswordSecretName": {
"type": "string",
"deprecated": true,
"$comment": "(DEPRECATED) please use `setAdminPassword.passwordSecretName` at the value top level"
},
"sonarWebContext": {
"type": "string",
"deprecated": true,
"$comment": "(DEPRECATED) please use sonarWebContext at the value top level"
}
}
},
"deploymentType": {
"type": "string",
"deprecated": true,
"$comment": "(DEPRECATED) this option will be removed in the next major release"
},
"curlContainerImage": {
"type": "string",
"deprecated": true,
"$comment": "(DEPRECATED) please use `setAdminPassword.image` at the value top level"
},
"adminJobAnnotations": {
"type": "object",
"deprecated": true,
"$comment": "(DEPRECATED) please use `setAdminPassword.annotations` at the value top level"
},
"sonarqubeFolder": {
"type": "string",
"deprecated": true,
"$comment": "(DEPRECATED) This value will is no longer required and will be dropped in future releases"
},
"terminationGracePeriodSeconds": {
"type": "integer",
"deprecated": true,
"$comment": "(DEPRECATED) This value is not used in the templates"
},
"deploymentStrategy": {
"type": "object",
"properties": {
"type": {
"type": "string",
"deprecated": true,
"$comment": "(DEPRECATED) This will be removed in future releases and set to `Recreate`"
}
}
}
}
}