You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: charts/camunda-platform-8.8/README.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -912,6 +912,11 @@ Please see the corresponding [release guide](../../docs/release.md) to find out
912
912
| `webModeler.restapi.mail.secret.existingSecretKey` | defines the key within the existing secret object. | `""` |
913
913
| `webModeler.restapi.mail.fromAddress` | defines the email address that will be displayed as the sender of emails sent by WebModeler | `""` |
914
914
| `webModeler.restapi.mail.fromName` | defines the name that will be displayed as the sender of emails sent by WebModeler | `Camunda 8` |
915
+
| `webModeler.restapi.pusher` | configuration for Pusher integration | |
916
+
| `webModeler.restapi.pusher.secret` | configuration to provide the Pusher app secret | |
917
+
| `webModeler.restapi.pusher.secret.inlineSecret` | can be used to provide the Pusher app secret as a plain-text value for non-production usage | `""` |
918
+
| `webModeler.restapi.pusher.secret.existingSecret` | can be used to reference an existing Kubernetes Secret containing the Pusher app secret | `""` |
919
+
| `webModeler.restapi.pusher.secret.existingSecretKey` | defines the key within the existing secret object | `""` |
915
920
| `webModeler.restapi.clusters` | can be used to configure Camunda 8 clusters that will be available in Web Modeler (will override default cluster configuration that is used if `orchestration.enabled=true`) | `[]` |
916
921
| `webModeler.restapi.podAnnotations` | can be used to define extra restapi pod annotations | `{}` |
917
922
| `webModeler.restapi.podLabels` | can be used to define extra restapi pod labels | `{}` |
Copy file name to clipboardExpand all lines: charts/camunda-platform-8.8/values.schema.json
+25Lines changed: 25 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2907,6 +2907,31 @@
2907
2907
}
2908
2908
}
2909
2909
},
2910
+
"pusher": {
2911
+
"type": "object",
2912
+
"properties": {
2913
+
"secret": {
2914
+
"type": "object",
2915
+
"properties": {
2916
+
"inlineSecret": {
2917
+
"type": "string",
2918
+
"description": "can be used to provide the Pusher app secret as a plain-text value for non-production usage",
2919
+
"default": ""
2920
+
},
2921
+
"existingSecret": {
2922
+
"type": "string",
2923
+
"description": "can be used to reference an existing Kubernetes Secret containing the Pusher app secret",
2924
+
"default": ""
2925
+
},
2926
+
"existingSecretKey": {
2927
+
"type": "string",
2928
+
"description": "defines the key within the existing secret object",
2929
+
"default": ""
2930
+
}
2931
+
}
2932
+
}
2933
+
}
2934
+
},
2910
2935
"clusters": {
2911
2936
"type": "array",
2912
2937
"description": "can be used to configure Camunda 8 clusters that will be available in Web Modeler (will override default cluster configuration that is used if `orchestration.enabled=true`)",
Copy file name to clipboardExpand all lines: charts/camunda-platform-8.8/values.yaml
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1483,6 +1483,16 @@ webModeler:
1483
1483
fromAddress: ""
1484
1484
## @param webModeler.restapi.mail.fromName defines the name that will be displayed as the sender of emails sent by WebModeler
1485
1485
fromName: "Camunda 8"
1486
+
## @extra webModeler.restapi.pusher configuration for Pusher integration
1487
+
pusher:
1488
+
## @extra webModeler.restapi.pusher.secret configuration to provide the Pusher app secret
1489
+
secret:
1490
+
## @param webModeler.restapi.pusher.secret.inlineSecret can be used to provide the Pusher app secret as a plain-text value for non-production usage
1491
+
inlineSecret: ""
1492
+
## @param webModeler.restapi.pusher.secret.existingSecret can be used to reference an existing Kubernetes Secret containing the Pusher app secret
1493
+
existingSecret: ""
1494
+
## @param webModeler.restapi.pusher.secret.existingSecretKey defines the key within the existing secret object
1495
+
existingSecretKey: ""
1486
1496
1487
1497
## @param webModeler.restapi.clusters can be used to configure Camunda 8 clusters that will be available in Web Modeler (will override default cluster configuration that is used if `orchestration.enabled=true`)
0 commit comments