Skip to content

Commit a01c658

Browse files
revert: "refactor: set default value for contextPath in all component… (#4221)
Co-authored-by: distro-ci[bot] <122795778+distro-ci[bot]@users.noreply.github.com>
1 parent 8b20ed8 commit a01c658

20 files changed

+52
-53
lines changed

charts/camunda-platform-8.8/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ Please see the corresponding [release guide](../../docs/release.md) to find out
608608
| `identity.sidecars` | can be used to attach extra containers to the identity deployment | `[]` |
609609
| `identity.initContainers` | can be used to set up extra init containers for the application Pod | `[]` |
610610
| `identity.fullURL` | can be used when Ingress is configured (for both multi and single domain setup). | `""` |
611-
| `identity.contextPath` | can be used to make Management Identity web application works on a custom sub-path. This is mainly used to run Camunda web applications under a single domain. | `/identity` |
611+
| `identity.contextPath` | can be used to make Management Identity web application works on a custom sub-path. This is mainly used to run Camunda web applications under a single domain. | `""` |
612612
| `identity.podAnnotations` | can be used to define extra Management Identity pod annotations | `{}` |
613613
| `identity.podLabels` | can be used to define extra Management Identity pod labels | `{}` |
614614
| `identity.logging` | configuration for the Management Identity logging. This template will be directly included in the Management Identity configuration YAML file | |
@@ -815,7 +815,7 @@ Please see the corresponding [release guide](../../docs/release.md) to find out
815815
| `console.tls.existingSecret` | The name of the existing secret that contains the TLS certificates. Each key of the secret corresponds to a certificate filename, and each value of a key corresponds to the content of the certificate file. | `""` |
816816
| `console.tls.certKeyFilename` | Certificate Key filename | `""` |
817817
| `console.keycloak.realm` | Specifies the Keycloak realm used for authentication. | `camunda-platform` |
818-
| `console.contextPath` | can be used to make Console web application works on a custom sub-path. This is mainly used to run Camunda web applications under a single domain. | `/` |
818+
| `console.contextPath` | can be used to make Console web application works on a custom sub-path. This is mainly used to run Camunda web applications under a single domain. | `""` |
819819
| `console.initContainers` | can be used to set up extra init containers for the application Pod | `[]` |
820820
| `console.podAnnotations` | can be used to define extra Console pod annotations | `{}` |
821821
| `console.podLabels` | can be used to define extra Console pod labels | `{}` |
@@ -892,7 +892,7 @@ Please see the corresponding [release guide](../../docs/release.md) to find out
892892
| `webModeler.image.registry` | can be used to set the Docker registry for the WebModeler images (overwrites global.image.registry) | `""` |
893893
| `webModeler.image.tag` | can be used to set the Docker image tag for the WebModeler images (overwrites global.image.tag) | `8.8.0-alpha8` |
894894
| `webModeler.image.pullSecrets` | can be used to configure image pull secrets, see https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod | `[]` |
895-
| `webModeler.contextPath` | can be used to make WebModeler available on a custom sub-path. This is mainly used to run the Camunda web applications under a single domain. | `/modeler` |
895+
| `webModeler.contextPath` | can be used to make WebModeler available on a custom sub-path. This is mainly used to run the Camunda web applications under a single domain. | `""` |
896896

897897
### WebModeler - RestAPI Parameters
898898

@@ -1220,7 +1220,7 @@ Please see the corresponding [release guide](../../docs/release.md) to find out
12201220
| `connectors.sidecars` | can be used to attach extra containers to the connectors deployment | `[]` |
12211221
| `connectors.initContainers` | can be used to set up extra init containers for the application Pod | `[]` |
12221222
| `connectors.replicas` | number of Connectors replicas | `1` |
1223-
| `connectors.contextPath` | can be used to make Connectors web application works on a custom sub-path. This is mainly used to run Camunda web applications under a single domain. | `/connectors` |
1223+
| `connectors.contextPath` | can be used to make Connectors web application works on a custom sub-path. This is mainly used to run Camunda web applications under a single domain. | `""` |
12241224
| `connectors.podAnnotations` | can be used to define extra Connectors pod annotations | `{}` |
12251225
| `connectors.podLabels` | can be used to define extra Connectors pod labels | `{}` |
12261226
| `connectors.logging` | configuration for the Connectors logging. This template will be directly included in the connector configuration YAML file | |
@@ -1432,7 +1432,7 @@ Please see the corresponding [release guide](../../docs/release.md) to find out
14321432
| `orchestration.ingress.grpc.tls` | configuration for tls on the ingress resource https://kubernetes.io/docs/concepts/services-networking/ingress/#tls | |
14331433
| `orchestration.ingress.grpc.tls.enabled` | if true, then tls is configured on the ingress resource. If enabled the Ingress.host need to be defined. | `false` |
14341434
| `orchestration.ingress.grpc.tls.secretName` | defines the secret name which contains the TLS private key and certificate | `camunda-platform-orchestration-grpc` |
1435-
| `orchestration.contextPath` | can be used to make Orchestration Cluster web application works on a custom sub-path. This is mainly used to run Camunda web applications under a single domain. | `/orchestration` |
1435+
| `orchestration.contextPath` | can be used to make Orchestration Cluster web application works on a custom sub-path. This is mainly used to run Camunda web applications under a single domain. | `""` |
14361436
| `orchestration.cpuThreadCount` | defines how many threads can be used for the processing on each broker pod | `3` |
14371437
| `orchestration.ioThreadCount` | defines how many threads can be used for the exporting on each broker pod | `3` |
14381438
| `orchestration.resources` | configuration to set request and limit configuration for the container https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/#requests-and-limits | |
@@ -1553,7 +1553,7 @@ Please see the corresponding [release guide](../../docs/release.md) to find out
15531553
| `optimize.migration.resources.limits.cpu` | | `2000m` |
15541554
| `optimize.migration.resources.limits.memory` | | `2Gi` |
15551555
| `optimize.sidecars` | can be used to attach extra containers to the optimize deployment | `[]` |
1556-
| `optimize.contextPath` | can be used to make Optimize web application works on a custom sub-path. This is mainly used to run Camunda web applications under a single domain. | `/optimize` |
1556+
| `optimize.contextPath` | can be used to make Optimize web application works on a custom sub-path. This is mainly used to run Camunda web applications under a single domain. | `""` |
15571557
| `optimize.configMap` | configuration which will be applied to the mounted config map. | |
15581558
| `optimize.configMap.defaultMode` | can be used to set permissions on created files by default. Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. | `754` |
15591559
| `optimize.podAnnotations` | can be used to define extra Optimize pod annotations | `{}` |

charts/camunda-platform-8.8/test/integration/scenarios/chart-full-setup/values-integration-test-ingress-basic.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ global:
1919
authenticationRefreshInterval: "PT30S"
2020

2121
orchestration:
22+
contextPath: "/orchestration"
2223
ingress:
2324
grpc:
2425
enabled: true

charts/camunda-platform-8.8/test/integration/scenarios/chart-full-setup/values-integration-test-ingress-keycloak.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ webModelerPostgresql:
9292
userPasswordKey: "webmodeler-postgresql-user-password"
9393

9494
orchestration:
95+
contextPath: "/orchestration"
9596
ingress:
9697
grpc:
9798
enabled: true

charts/camunda-platform-8.8/test/integration/scenarios/chart-full-setup/values-integration-test-ingress-oidc.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ webModelerPostgresql:
119119
userPasswordKey: "webmodeler-postgresql-user-password"
120120

121121
orchestration:
122+
contextPath: "/orchestration"
122123
ingress:
123124
grpc:
124125
enabled: true

charts/camunda-platform-8.8/test/unit/common/golden/connectors-service-monitor.golden.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ spec:
1818
app.kubernetes.io/component: connectors
1919
endpoints:
2020
- honorLabels: true
21-
path: /connectors/actuator/prometheus
21+
path: /actuator/prometheus
2222
port: http
2323
interval: 10s

charts/camunda-platform-8.8/test/unit/common/golden/orchestration-service-monitor.golden.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ spec:
1818
app.kubernetes.io/component: orchestration
1919
endpoints:
2020
- honorLabels: true
21-
path: /orchestration/actuator/prometheus
21+
path: /actuator/prometheus
2222
port: server
2323
interval: 10s

charts/camunda-platform-8.8/test/unit/connectors/golden/configmap.golden.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ data:
1616
application.yaml: |
1717
server:
1818
port: 8080
19-
servlet:
20-
context-path: "/connectors"
2119
2220
management:
2321
endpoints:
@@ -37,7 +35,7 @@ data:
3735
3836
camunda:
3937
client:
40-
rest-address: http://camunda-platform-test-zeebe-gateway:8080/orchestration
38+
rest-address: http://camunda-platform-test-zeebe-gateway:8080
4139
grpc-address: http://camunda-platform-test-zeebe-gateway:26500
4240
worker:
4341
defaults:

charts/camunda-platform-8.8/test/unit/connectors/golden/deployment.golden.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ spec:
7272
memory: 1Gi
7373
readinessProbe:
7474
httpGet:
75-
path: /connectors/actuator/health/readiness
75+
path: /actuator/health/readiness
7676
port: http
7777
scheme: HTTP
7878
initialDelaySeconds: 30

0 commit comments

Comments
 (0)