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, "editable": true,
"gnetId": 2381, "gnetId": 2381,
"graphTooltip": 0, "graphTooltip": 0,
@@ -3433,7 +3433,7 @@
] ]
}, },
"timezone": "browser", "timezone": "browser",
"title": "Storage Node - {{ SERVERNAME }} Overview", "title": "Search Node - {{ SERVERNAME }} Overview",
"uid": "{{ UID }}", "uid": "{{ UID }}",
"version": 3 "version": 3
} }

View File

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

View File

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

View File

@@ -29,7 +29,7 @@ echo "Applying cross cluster search config..."
-H 'Content-Type: application/json' \ -H 'Content-Type: application/json' \
-d "{\"persistent\": {\"search\": {\"remote\": {\"{{ MASTER }}\": {\"seeds\": [\"127.0.0.1:9300\"]}}}}}" -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() %} {%- 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"]}}}}}' curl -XPUT http://{{ ES }}:9200/_cluster/settings -H'Content-Type: application/json' -d '{"persistent": {"search": {"remote": {"{{ SN }}": {"skip_unavailable": "true", "seeds": ["{{ SNDATA.ip }}:9300"]}}}}}'