forked from bitnami/charts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[bitnami/spring-cloud-data-flow] Fixes and improvements (bitnami#2945)
* Ignore .DS_Store * Spring Cloud Data Flow chart fixes and improvements: 1) added ability to configure Hibernate dialect 2) fixed issue with locating application.yaml in kubernetes cluster 3) added JDWP support 4) removed MariaDB from database comments, because external database can be PostgreSQL as well 5) fixed some wrong properties (externalDatabase.server -> externalDatabase.dataflow) * Added changes to values-production.yaml. * Bumped spring-cloud-dataflow to 0.1.3 version. * Added hibernateDialect and jdwp variables to README.md. * Fixed "missing starting space in comment" * Fixed "java.sql.SQLInvalidAuthorizationSpecException: Access denied for user 'dataflow'@'10.244.0.5' (using password: YES)". * Bump version to 0.2.0. * Added support for external RabbitMQ. * Added externalRabbitmq config to README. Fixed typo: rabbitmq.rabbitmq -> rabbitmq.auth. * Fixed config location, use /opt/bitnami/**/conf.
- Loading branch information
Showing
13 changed files
with
229 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
*.tgz | ||
/.idea/* | ||
.vscode | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
bitnami/spring-cloud-dataflow/templates/externalrabbitmq-secrets.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{{- if and (.Values.externalRabbitmq.enabled) (not .Values.rabbitmq.enabled) }} | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: {{ printf "%s-%s" (include "scdf.fullname" .) "externalrabbitmq" }} | ||
labels: {{- include "common.labels.standard" . | nindent 4 }} | ||
type: Opaque | ||
data: | ||
rabbitmq-password: {{ .Values.externalRabbitmq.password | b64enc | quote }} | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.