You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can you open a PR following the logic in configure_idxc_manager.yml to contextually switch from the master_uri arg to the manager_uri var? Should look something like this:
- name: Run splunk version command to check currently installed versioninclude_tasks: check_splunk_version.yml# Splunk version < 8.1 supports mode=master# https://docs.splunk.com/Documentation/Splunk/8.0.9/Indexer/Configuremasterwithserverconf# Splunk version >= 8.1 supports mode=manager# https://docs.splunk.com/Documentation/Splunk/latest/Indexer/Configuremanagerwithserverconf
- name: Setting clustering mode based on Splunk version numberset_fact:
mode_value: "{% if splunk_version_release | float < 8.1 %}master{% else %}manager{% endif %}"
This causes deprecated errors.
The text was updated successfully, but these errors were encountered: