You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-1Lines changed: 15 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ Creates a complete GitOps-based operational stack on your Kubernetes clusters:
8
8
* Notifications/Alerts: Grafana and ArgoCD can be predefined with either an external mailserver or [MailHog](https://github.com/mailhog/MailHog) for demo purposes.
9
9
* Pipelines: Example applications using [Jenkins](#jenkins) with the [gitops-build-lib](https://github.com/cloudogu/gitops-build-lib) and [SCM-Manager](#scm-manager)
Copy file name to clipboardExpand all lines: docs/configuration.schema.json
+54Lines changed: 54 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -169,6 +169,60 @@
169
169
"additionalProperties" : false,
170
170
"description" : "Configuration Parameter for the ArgoCD Operator"
171
171
},
172
+
"certManager" : {
173
+
"type" : "object",
174
+
"properties" : {
175
+
"active" : {
176
+
"type" : "boolean",
177
+
"description" : "Sets and enables Cert Manager"
178
+
},
179
+
"helm" : {
180
+
"type" : "object",
181
+
"properties" : {
182
+
"acmeSolverImage" : {
183
+
"type" : "string",
184
+
"description" : "Sets acmeSolver Image for Cert Manager"
185
+
},
186
+
"cainjectorImage" : {
187
+
"type" : "string",
188
+
"description" : "Sets cainjector Image for Cert Manager"
189
+
},
190
+
"chart" : {
191
+
"type" : "string",
192
+
"description" : "Name of the Helm chart"
193
+
},
194
+
"image" : {
195
+
"type" : "string",
196
+
"description" : "Sets image for Cert Manager"
197
+
},
198
+
"repoURL" : {
199
+
"type" : "string",
200
+
"description" : "Repository url from which the Helm chart should be obtained"
201
+
},
202
+
"startupAPICheckImage" : {
203
+
"type" : "string",
204
+
"description" : "Sets startupAPICheck Image for Cert Manager"
205
+
},
206
+
"values" : {
207
+
"$ref" : "#/$defs/Map(String,Object)",
208
+
"description" : "Helm values of the chart, allows overriding defaults and setting values that are not exposed as explicit configuration"
209
+
},
210
+
"version" : {
211
+
"type" : "string",
212
+
"description" : "The version of the Helm chart to be installed"
213
+
},
214
+
"webhookImage" : {
215
+
"type" : "string",
216
+
"description" : "Sets webhook Image for Cert Manager"
217
+
}
218
+
},
219
+
"additionalProperties" : false,
220
+
"description" : "Common Config parameters for the Helm package manager: Name of Chart (chart), URl of Helm-Repository (repoURL) and Chart Version (version). Note: These config is intended to obtain the chart from a different source (e.g. in air-gapped envs), not to use a different version of a helm chart. Using a different helm chart or version to the one used in the GOP version will likely cause errors."
221
+
}
222
+
},
223
+
"additionalProperties" : false,
224
+
"description" : "Config parameters for the Cert Manager"
0 commit comments