Skip to content

Commit a8121b8

Browse files
authored
fix: revert webmodeler externaldb change (#4071)
1 parent 5684195 commit a8121b8

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

charts/camunda-platform-8.7/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1471,7 +1471,7 @@ Please see the corresponding [release guide](../../docs/release.md) to find out
14711471
| `webModeler.restapi.sidecars` | can be used to attach extra containers to the restapi deployment | `[]` |
14721472
| `webModeler.restapi.initContainers` | can be used to set up extra init containers for the application Pod | `[]` |
14731473
| `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`) | |
1474-
| `webModeler.restapi.externalDatabase.url` | (DEPRECATED) defines the JDBC url of the database instance. Use host, port, and database instead of url. | `""` |
1474+
| `webModeler.restapi.externalDatabase.url` | defines the JDBC url of the database instance. | `""` |
14751475
| `webModeler.restapi.externalDatabase.host` | Database host (used when url is not provided) | `""` |
14761476
| `webModeler.restapi.externalDatabase.port` | Database port number (used when url is not provided) | `5432` |
14771477
| `webModeler.restapi.externalDatabase.database` | The database name (used when url is not provided) | `web-modeler` |

charts/camunda-platform-8.7/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2942,7 +2942,7 @@ webModeler:
29422942
## @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`)
29432943
# Note: Currently, the only supported database system is PostgreSQL.
29442944
externalDatabase:
2945-
## @param webModeler.restapi.externalDatabase.url (DEPRECATED) defines the JDBC url of the database instance. Use host, port, and database instead of url.
2945+
## @param webModeler.restapi.externalDatabase.url defines the JDBC url of the database instance.
29462946
# Note: If url is provided, it takes precedence over individual connection parameters (host, port, database)
29472947
url: ""
29482948
## @param webModeler.restapi.externalDatabase.host Database host (used when url is not provided)

charts/camunda-platform-8.8/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -886,7 +886,7 @@ Please see the corresponding [release guide](../../docs/release.md) to find out
886886
| `webModeler.restapi.sidecars` | can be used to attach extra containers to the restapi deployment | `[]` |
887887
| `webModeler.restapi.initContainers` | can be used to set up extra init containers for the application Pod | `[]` |
888888
| `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`) | |
889-
| `webModeler.restapi.externalDatabase.url` | (DEPRECATED - use host, port, and database instead) defines the JDBC url of the database instance. | `""` |
889+
| `webModeler.restapi.externalDatabase.url` | defines the JDBC url of the database instance. | `""` |
890890
| `webModeler.restapi.externalDatabase.host` | Database host (used when url is not provided) | `""` |
891891
| `webModeler.restapi.externalDatabase.port` | Database port number (used when url is not provided) | `5432` |
892892
| `webModeler.restapi.externalDatabase.database` | The database name (used when url is not provided) | `web-modeler` |

charts/camunda-platform-8.8/values.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2787,7 +2787,7 @@
27872787
"properties": {
27882788
"url": {
27892789
"type": "string",
2790-
"description": "(DEPRECATED - use host, port, and database instead) defines the JDBC url of the database instance.",
2790+
"description": "defines the JDBC url of the database instance.",
27912791
"default": ""
27922792
},
27932793
"host": {

charts/camunda-platform-8.8/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1422,7 +1422,7 @@ webModeler:
14221422

14231423
## @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`)
14241424
externalDatabase:
1425-
## @param webModeler.restapi.externalDatabase.url (DEPRECATED - use host, port, and database instead) defines the JDBC url of the database instance.
1425+
## @param webModeler.restapi.externalDatabase.url defines the JDBC url of the database instance.
14261426
# Note: If url is provided, it takes precedence over individual connection parameters (host, port, database)
14271427
url: ""
14281428
## @param webModeler.restapi.externalDatabase.host Database host (used when url is not provided)

0 commit comments

Comments
 (0)