We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've been trying to alter the meta settings according to the docs by doing:
meta
influxdb: meta: enabled:true bind: address: 127.0.0.1 port: 8088 http_address: 127.0.0.1 http_port: 8091
However this continually returns the error:
SaltRenderError: Jinja variable 'dict object' has no attribute 'http_port'
Looking at the influxdb.conf jinja template, it appears to do:
influxdb.conf
bind-address = "{{ server.meta.bind.address }}:{{ server.admin.bind.port }}" http-bind-address = "{{ server.meta.bind.http_address }}:{{ server.admin.bind.http_port }}"
Shouldn't the port for these 2 config options be read from server.meta. and not server.admin. ?
server.meta.
server.admin.
salt-formula-influxdb/influxdb/files/influxdb.conf
Line 43 in a7b4635
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've been trying to alter the
meta
settings according to the docs by doing:However this continually returns the error:
Looking at the
influxdb.conf
jinja template, it appears to do:Shouldn't the port for these 2 config options be read from
server.meta.
and notserver.admin.
?salt-formula-influxdb/influxdb/files/influxdb.conf
Line 43 in a7b4635
The text was updated successfully, but these errors were encountered: