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
The declarative configuration supports {{ instance_name }} template variable from the beginning.
{{ instance_name }}
Now, two more ones were added: {{ replicaset_name }} and {{ group_name }}.
{{ replicaset_name }}
{{ group_name }}
All the template variables are set according to the instance/replicaset/group topology from the given configuration.
Example:
console: socket: '{{ group_name }}/{{ replicaset_name }}/{{ instance_name }}.admin' groups: g: replicasets: r: instances: i: {}
The admin console will be at g/r/i.admin for instance i.
g/r/i.admin
i
Requested by @Totktonada in tarantool/tarantool@f059973.
The text was updated successfully, but these errors were encountered:
https://docs.d.tarantool.io/en/doc/3.0/concepts/configuration/#predefined-variables
Sorry, something went wrong.
andreyaksenov
Successfully merging a pull request may close this issue.
The declarative configuration supports
{{ instance_name }}
templatevariable from the beginning.
Now, two more ones were added:
{{ replicaset_name }}
and{{ group_name }}
.All the template variables are set according to the
instance/replicaset/group topology from the given configuration.
Example:
The admin console will be at
g/r/i.admin
for instancei
.Requested by @Totktonada in tarantool/tarantool@f059973.
The text was updated successfully, but these errors were encountered: