Rename Storage to Search Nodes

This commit is contained in:
Mike Reeves
2019-12-17 15:32:43 -05:00
parent 110049436e
commit 5ead3a26b6
4 changed files with 8 additions and 8 deletions

View File

@@ -12,7 +12,7 @@
}
]
},
"description": "This Dashboard provides a general overview of a Storage Node",
"description": "This Dashboard provides a general overview of a Search Node",
"editable": true,
"gnetId": 2381,
"graphTooltip": 0,
@@ -3433,7 +3433,7 @@
]
},
"timezone": "browser",
"title": "Storage Node - {{ SERVERNAME }} Overview",
"title": "Search Node - {{ SERVERNAME }} Overview",
"uid": "{{ UID }}",
"version": 3
}

View File

@@ -410,7 +410,7 @@ enable_forwardnode_sensoroni_9822_{{ip}}:
{% endfor %}
{% for ip in pillar.get('ssearch_nodes') %}
{% for ip in pillar.get('search_nodes') %}
enable_searchnode_redis_6379_{{ip}}:
iptables.insert:
@@ -423,7 +423,7 @@ enable_searchnode_redis_6379_{{ip}}:
- position: 1
- save: True
enable_storagenode_ES_9300_{{ip}}:
enable_searchnode_ES_9300_{{ip}}:
iptables.insert:
- table: filter
- chain: DOCKER-USER
@@ -578,7 +578,7 @@ enable_standard_analyst_443_{{ip}}:
{% endfor %}
# Rules for storage nodes connecting to master
# Rules for search nodes connecting to master
{% endif %}

View File

@@ -117,7 +117,7 @@ base:
{%- endif %}
# Storage node logic
# Search node logic
'G@role:so-node and I@node:node_type:parser':
- match: pillar
@@ -151,7 +151,7 @@ base:
{%- endif %}
- schedule
'G@role:so-node and I@node:node_type:storage':
'G@role:so-node and I@node:node_type:search':
- match: compound
- ca
- ssl

View File

@@ -29,7 +29,7 @@ echo "Applying cross cluster search config..."
-H 'Content-Type: application/json' \
-d "{\"persistent\": {\"search\": {\"remote\": {\"{{ MASTER }}\": {\"seeds\": [\"127.0.0.1:9300\"]}}}}}"
# Add all the storage nodes to cross cluster searching.
# Add all the search nodes to cross cluster searching.
{%- for SN, SNDATA in salt['pillar.get']('nodestab', {}).items() %}
curl -XPUT http://{{ ES }}:9200/_cluster/settings -H'Content-Type: application/json' -d '{"persistent": {"search": {"remote": {"{{ SN }}": {"skip_unavailable": "true", "seeds": ["{{ SNDATA.ip }}:9300"]}}}}}'