Skip to content

Commit 4d422a4

Browse files
committed
Add extraParameters to values.schema.json
- Problem Statement The current **clustergroup** schema does not allow the definition of **extraParameters** under the **main** section of a values file. - Caveat The user defined variables in the **extraParameters** section would only be applied if the user deploys the pattern via the command, using `./pattern.sh make install` or `./pattern.sh make operator-deploy` and not via the OpenShift Validated Patterns Operator UI. - Fix Description Add the **extraParameters** to the definition of **Main.properties** in the values.schema.json: "extraParameters": { "type": "array", "description": "Pass in extra Helm parameters to all ArgoCD Applications and the framework." }, - This will allow users to define extra parameters that will be added by the framework to the ArgoCD applications it creates. - For more information see validatedpatterns/common#510
1 parent 370b78e commit 4d422a4

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

clustergroup/values.schema.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@
6565
"clusterGroupName": {
6666
"type": "string"
6767
},
68+
"extraParameters": {
69+
"type": "array",
70+
"description": "Pass in extra Helm parameters to all ArgoCD Applications and the framework."
71+
},
6872
"experimentalCapabilities": {
6973
"type": "string",
7074
"description": "String to enable certain experimental capabilities in the operator and the framework."

0 commit comments

Comments
 (0)