Skip to content

Commit

Permalink
readme and schema
Browse files Browse the repository at this point in the history
  • Loading branch information
MLenterman committed Aug 2, 2024
1 parent 59e7912 commit a3729bb
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 88 deletions.
4 changes: 2 additions & 2 deletions charts/openforms2xxllnc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ helm delete my-ff-template
| Name | Description | Value |
| ------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------- | ----------- |
| `frank.memory.percentage` | Set if the values for the memory are in percentages | `false` |
| `frank.memory.minimum` | Sets the initial size of the heap that will be used by the Frank!Framework | `4G` |
| `frank.memory.maximum` | Sets the maximum size of the heap that will be used by the Frank!Framework | `4G` |
| `frank.memory.minimum` | Sets the initial size of the heap that will be used by the Frank!Framework | `1G` |
| `frank.memory.maximum` | Sets the maximum size of the heap that will be used by the Frank!Framework | `1G` |
| `frank.dtap.stage` | (Required) Set the `DTAP` stage. Options: `LOC`, `DEV`, `TST`, `ACC`, `PRD` | `""` |
| `frank.dtap.side` | Set the `DTAP` side of where the instance is running | `""` |
| `frank.credentials.secret` | Set the secret name of the existing secret | `""` |
Expand Down
153 changes: 67 additions & 86 deletions charts/openforms2xxllnc/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@
"minimum": {
"type": "string",
"description": "Sets the initial size of the heap that will be used by the Frank!Framework",
"default": "4G"
"default": "1G"
},
"maximum": {
"type": "string",
"description": "Sets the maximum size of the heap that will be used by the Frank!Framework",
"default": "4G"
"default": "1G"
}
}
},
Expand Down Expand Up @@ -485,44 +485,59 @@
"description": "Extra labels for Frank!Framework pods",
"default": {}
},
"openforms2xxllnc": {
"persistence": {
"type": "object",
"properties": {
"mailTemplates": {
"type": "object",
"properties": {
"templates": {
"type": "array",
"description": "",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": ""
},
"subject": {
"type": "string",
"description": ""
},
"message": {
"type": "string",
"description": ""
},
"messageType": {
"type": "string",
"description": ""
}
}
}
},
"existingConfigMap": {
"type": "string",
"description": "The name of the configmap containing the mail templates.",
"default": ""
}
"enabled": {
"type": "boolean",
"description": "Enable persistence using Persistent Volume Claims",
"default": false
},
"storageClass": {
"type": "string",
"description": "Persistent Volume storage class",
"default": ""
},
"accessModes": {
"type": "array",
"description": "Persistent Volume access modes",
"default": [
"ReadWriteOnce"
],
"items": {
"type": "string"
}
},
"size": {
"type": "string",
"description": "Persistent Volume size",
"default": "5Gi"
},
"dataSource": {
"type": "object",
"description": "Custom PVC data source",
"default": {}
},
"existingClaim": {
"type": "string",
"description": "The name of an existing PVC to use for persistence",
"default": ""
},
"selector": {
"type": "object",
"description": "Selector to match an existing Persistent Volume for the Frank!Framework's data PVC",
"default": {}
},
"annotations": {
"type": "object",
"description": "Persistent Volume Claim annotations",
"default": {}
}
}
},
"openforms2xxllnc": {
"type": "object",
"properties": {
"connections": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -713,6 +728,22 @@
}
}
},
"mailTemplates": {
"type": "object",
"properties": {
"existingConfigMap": {
"type": "string",
"description": "The name of the configmap containing the mail templates.",
"default": ""
},
"templates": {
"type": "array",
"description": "Mail templates that can be referenced by name on a variety of functional error scenario's.",
"default": [],
"items": {}
}
}
},
"workflows": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -874,56 +905,6 @@
}
}
}
},
"persistence": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "Enable persistence using Persistent Volume Claims",
"default": false
},
"storageClass": {
"type": "string",
"description": "Persistent Volume storage class",
"default": ""
},
"accessModes": {
"type": "array",
"description": "Persistent Volume access modes",
"default": [
"ReadWriteOnce"
],
"items": {
"type": "string"
}
},
"size": {
"type": "string",
"description": "Persistent Volume size",
"default": "5Gi"
},
"dataSource": {
"type": "object",
"description": "Custom PVC data source",
"default": {}
},
"existingClaim": {
"type": "string",
"description": "The name of an existing PVC to use for persistence",
"default": ""
},
"selector": {
"type": "object",
"description": "Selector to match an existing Persistent Volume for the Frank!Framework's data PVC",
"default": {}
},
"annotations": {
"type": "object",
"description": "Persistent Volume Claim annotations",
"default": {}
}
}
}
}
}

0 comments on commit a3729bb

Please sign in to comment.