Skip to content
Merged
2 changes: 1 addition & 1 deletion charts/camunda-platform-8.7/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1471,7 +1471,7 @@ Please see the corresponding [release guide](../../docs/release.md) to find out
| `webModeler.restapi.sidecars` | can be used to attach extra containers to the restapi deployment | `[]` |
| `webModeler.restapi.initContainers` | can be used to set up extra init containers for the application Pod | `[]` |
| `webModeler.restapi.externalDatabase` | can be used to configure a connection to an external database; will only be applied if the postgresql dependency chart is disabled (with `postgresql.enabled=false`) | |
| `webModeler.restapi.externalDatabase.url` | (DEPRECATED) defines the JDBC url of the database instance. Use host, port, and database instead of url. | `""` |
| `webModeler.restapi.externalDatabase.url` | defines the JDBC url of the database instance. | `""` |
| `webModeler.restapi.externalDatabase.host` | Database host (used when url is not provided) | `""` |
| `webModeler.restapi.externalDatabase.port` | Database port number (used when url is not provided) | `5432` |
| `webModeler.restapi.externalDatabase.database` | The database name (used when url is not provided) | `web-modeler` |
Expand Down
2 changes: 1 addition & 1 deletion charts/camunda-platform-8.7/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2942,7 +2942,7 @@ webModeler:
## @extra webModeler.restapi.externalDatabase can be used to configure a connection to an external database; will only be applied if the postgresql dependency chart is disabled (with `postgresql.enabled=false`)
# Note: Currently, the only supported database system is PostgreSQL.
externalDatabase:
## @param webModeler.restapi.externalDatabase.url (DEPRECATED) defines the JDBC url of the database instance. Use host, port, and database instead of url.
## @param webModeler.restapi.externalDatabase.url defines the JDBC url of the database instance.
# Note: If url is provided, it takes precedence over individual connection parameters (host, port, database)
url: ""
## @param webModeler.restapi.externalDatabase.host Database host (used when url is not provided)
Expand Down
2 changes: 1 addition & 1 deletion charts/camunda-platform-8.8/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -886,7 +886,7 @@ Please see the corresponding [release guide](../../docs/release.md) to find out
| `webModeler.restapi.sidecars` | can be used to attach extra containers to the restapi deployment | `[]` |
| `webModeler.restapi.initContainers` | can be used to set up extra init containers for the application Pod | `[]` |
| `webModeler.restapi.externalDatabase` | can be used to configure a connection to an external database; will only be applied if the postgresql dependency chart is disabled (with `postgresql.enabled=false`) | |
| `webModeler.restapi.externalDatabase.url` | (DEPRECATED - use host, port, and database instead) defines the JDBC url of the database instance. | `""` |
| `webModeler.restapi.externalDatabase.url` | defines the JDBC url of the database instance. | `""` |
| `webModeler.restapi.externalDatabase.host` | Database host (used when url is not provided) | `""` |
| `webModeler.restapi.externalDatabase.port` | Database port number (used when url is not provided) | `5432` |
| `webModeler.restapi.externalDatabase.database` | The database name (used when url is not provided) | `web-modeler` |
Expand Down
2 changes: 1 addition & 1 deletion charts/camunda-platform-8.8/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2787,7 +2787,7 @@
"properties": {
"url": {
"type": "string",
"description": "(DEPRECATED - use host, port, and database instead) defines the JDBC url of the database instance.",
"description": "defines the JDBC url of the database instance.",
"default": ""
},
"host": {
Expand Down
2 changes: 1 addition & 1 deletion charts/camunda-platform-8.8/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1422,7 +1422,7 @@ webModeler:

## @extra webModeler.restapi.externalDatabase can be used to configure a connection to an external database; will only be applied if the postgresql dependency chart is disabled (with `postgresql.enabled=false`)
externalDatabase:
## @param webModeler.restapi.externalDatabase.url (DEPRECATED - use host, port, and database instead) defines the JDBC url of the database instance.
## @param webModeler.restapi.externalDatabase.url defines the JDBC url of the database instance.
# Note: If url is provided, it takes precedence over individual connection parameters (host, port, database)
url: ""
## @param webModeler.restapi.externalDatabase.host Database host (used when url is not provided)
Expand Down
Loading