Add common application properties configuration (#8982)

Signed-off-by: CEDDM <52827991+CEDDM@users.noreply.github.com>
This commit is contained in:
CEDDM
2022-02-11 18:37:40 +01:00
committed by GitHub
parent a956bad36b
commit 5aa0fb23aa
4 changed files with 9 additions and 2 deletions

View File

@@ -39,4 +39,4 @@ sources:
- https://github.com/bitnami/bitnami-docker-spring-cloud-dataflow
- https://github.com/bitnami/bitnami-docker-spring-cloud-skipper
- https://dataflow.spring.io/
version: 5.1.1
version: 5.2.0

View File

@@ -183,6 +183,7 @@ helm uninstall my-release
| `server.jdwp.enabled` | Set to true to enable Java debugger | `false` |
| `server.jdwp.port` | Specify port for remote debugging | `5005` |
| `server.proxy` | Add proxy configuration for SCDF server | `{}` |
| `server.applicationProperties` | Specify common application properties added by SCDF server to streams and/or tasks | `{}` |
### Dataflow Skipper parameters
@@ -779,4 +780,4 @@ Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.

View File

@@ -30,6 +30,9 @@ data:
spring:
cloud:
dataflow:
{{- if .Values.server.applicationProperties }}
applicationProperties: {{- include "common.tplvalues.render" (dict "value" .Values.server.applicationProperties "context" $) | nindent 12 }}
{{- end }}
{{- if .Values.server.configuration.batchEnabled }}
task:
platform:

View File

@@ -545,6 +545,9 @@ server:
## password: ""
##
proxy: {}
## @param server.applicationProperties Specify common application properties added by SCDF server to streams and/or tasks
## ref: https://docs.spring.io/spring-cloud-dataflow/docs/current/reference/htmlsingle/#spring-cloud-dataflow-global-properties
applicationProperties: {}
## @section Dataflow Skipper parameters