Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
influxdb
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
influxdb
Commits
55f52e29
Commit
55f52e29
authored
Mar 06, 2020
by
Naseem
Committed by
David McKay
Mar 07, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix config rendering.
Provided that int values can be quoted in the config, this fixes the issue where strings are not quoted in the rendered config.
parent
0de8813b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
15 deletions
+15
-15
Chart.yaml
charts/influxdb/Chart.yaml
+1
-1
configmap.yaml
charts/influxdb/templates/configmap.yaml
+14
-14
No files found.
charts/influxdb/Chart.yaml
View file @
55f52e29
apiVersion
:
v1
name
:
influxdb
version
:
4.3.
4
version
:
4.3.
5
appVersion
:
1.7.10
description
:
Scalable datastore for metrics, events, and real-time analytics.
keywords
:
...
...
charts/influxdb/templates/configmap.yaml
View file @
55f52e29
...
...
@@ -12,7 +12,7 @@ data:
[meta]
dir = "/var/lib/influxdb/meta"
{{- range $key, $value := index .Values.config.meta }}
{{ $key }} = {{ $value }}
{{ $key }} = {{ $value
| quote
}}
{{- end }}
{{- if .Values.enterprise.enabled }}
...
...
@@ -24,44 +24,44 @@ data:
dir = "/var/lib/influxdb/data"
wal-dir = "/var/lib/influxdb/wal"
{{- range $key, $value := index .Values.config.data }}
{{ $key }} = {{ $value }}
{{ $key }} = {{ $value
| quote
}}
{{- end }}
[coordinator]
{{- range $key, $value := index .Values.config.coordinator }}
{{ $key }} = {{ $value }}
{{ $key }} = {{ $value
| quote
}}
{{- end }}
[retention]
{{- range $key, $value := index .Values.config.retention }}
{{ $key }} = {{ $value }}
{{ $key }} = {{ $value
| quote
}}
{{- end }}
[shard-precreation]
{{- range $key, $value := index .Values.config.shard_precreation }}
{{ $key }} = {{ $value }}
{{ $key }} = {{ $value
| quote
}}
{{- end }}
[monitor]
{{- range $key, $value := index .Values.config.monitor }}
{{ $key }} = {{ $value }}
{{ $key }} = {{ $value
| quote
}}
{{- end }}
[subscriber]
{{- range $key, $value := index .Values.config.subscriber }}
{{ $key }} = {{ $value }}
{{ $key }} = {{ $value
| quote
}}
{{- end }}
[http]
{{- range $key, $value := index .Values.config.http }}
{{ $key }} = {{ $value }}
{{ $key }} = {{ $value
| quote
}}
{{- end }}
# TODO: allow multiple graphite listeners
[[graphite]]
{{- range $key, $value := index .Values.config.graphite }}
{{ $key }} = {{ $value }}
{{ $key }} = {{ $value
| quote
}}
{{- end }}
{{- if .Values.config.graphite.templates }}
templates = [
...
...
@@ -75,31 +75,31 @@ data:
[[collectd]]
{{- range $key, $value := index .Values.config.collectd }}
{{ $key }} = {{ $value }}
{{ $key }} = {{ $value
| quote
}}
{{- end }}
# TODO: allow multiple opentsdb listeners with templates
[[opentsdb]]
{{- range $key, $value := index .Values.config.opentsdb }}
{{ $key }} = {{ $value }}
{{ $key }} = {{ $value
| quote
}}
{{- end }}
# TODO: allow multiple udp listeners with templates
[[udp]]
{{- range $key, $value := index .Values.config.udp }}
{{ $key }} = {{ $value }}
{{ $key }} = {{ $value
| quote
}}
{{- end }}
[continuous_queries]
{{- range $key, $value := index .Values.config.continuous_queries }}
{{ $key }} = {{ $value }}
{{ $key }} = {{ $value
| quote
}}
{{- end }}
[logging]
{{- range $key, $value := index .Values.config.logging }}
{{ $key }} = {{ $value }}
{{ $key }} = {{ $value
| quote
}}
{{- end }}
{{ if .Values.enterprise.enabled -}}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment