You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by wi...@apache.org on 2020/02/24 17:26:56 UTC

[incubator-streampipes-installer] branch dev updated: use quotes for env vars

This is an automated email from the ASF dual-hosted git repository.

wiener pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes-installer.git


The following commit(s) were added to refs/heads/dev by this push:
     new 796efcc  use quotes for env vars
796efcc is described below

commit 796efcccf102855054dac47a38a7a71d328a9811
Author: Patrick Wiener <wi...@fzi.de>
AuthorDate: Mon Feb 24 18:26:45 2020 +0100

    use quotes for env vars
---
 .../mandatory-external-services/influxdb/influxdb-deployment.yaml   | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/helm-chart/templates/mandatory-external-services/influxdb/influxdb-deployment.yaml b/helm-chart/templates/mandatory-external-services/influxdb/influxdb-deployment.yaml
index 3a1f4fa..dba68d1 100644
--- a/helm-chart/templates/mandatory-external-services/influxdb/influxdb-deployment.yaml
+++ b/helm-chart/templates/mandatory-external-services/influxdb/influxdb-deployment.yaml
@@ -41,11 +41,11 @@ spec:
             - containerPort: 8090
           env:
             - name: INFLUXDB_DATA_ENGINE
-              value: tsm1
+              value: "tsm1"
             - name: INFLUXDB_REPORTING_DISABLED
-              value: false
+              value: "false"
             - name: INFLUXDB_ADMIN_ENABLED
-              value: true
+              value: "true"
           volumeMounts:
             - mountPath: "/var/lib/influxdb"
               name: influxdb-pv