Skip to content

Commit

Permalink
fix: unquoted integer in configmap
Browse files Browse the repository at this point in the history
Signed-off-by: ffais <ffais@fbk.eu>
  • Loading branch information
ffais committed Feb 27, 2024
1 parent cef1ecf commit 0a70ee6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/openmetadata-java-connector/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: openmetadata-java-connector
description: Connector to store in OpenMetadata some Dataitem info coming from the DigitaHub Platform. The data must be published on a RabbitMQ Queue in 'JSON' format.
type: application
version: 0.1.1
version: 0.1.2
appVersion: "1.2"
6 changes: 3 additions & 3 deletions charts/openmetadata-java-connector/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ metadata:
data:
CONTEXT_PATH: {{ .Values.connector.contextPath }}
RABBITMQ_HOST: {{ .Values.connector.rabbitmq.host }}
RABBITMQ_PORT: {{ .Values.connector.rabbitmq.port }}
RABBITMQ_PORT: {{ .Values.connector.rabbitmq.port | quote }}
RABBITMQ_VIRTUALHOST: {{ .Values.connector.rabbitmq.virtualhost }}
SAMPLER_PROB: {{ .Values.connector.zipkin.samplerProb }}
ZIPKIN_ENABLED: {{ .Values.connector.zipkin.enabled }}
SAMPLER_PROB: {{ .Values.connector.zipkin.samplerProb | quote }}
ZIPKIN_ENABLED: {{ .Values.connector.zipkin.enabled | quote }}
ZIPKIN_ENDPOINT: {{ .Values.connector.zipkin.endpoint }}
OPENMETADATA_HOST: {{ .Values.connector.openmetadata.host }}
OPENMETADATA_DATASERVICE_NAME: {{ .Values.connector.openmetadata.dataserviceName }}
Expand Down

0 comments on commit 0a70ee6

Please sign in to comment.