我有一个使用minikube运行的本地集群。我安装了带有官方helm chart的弹性操作符,并使用此yaml运行了一个弹性集群:
apiVersion: elasticsearch.k8s.elastic.co/v1
kind: Elasticsearch
metadata:
name: es-qs
spec:
version: 8.6.2
nodeSets:
- name: default
count: 1
config:
node.store.allow_mmap: false
我从来没有在ECK上使用过elasticsearch,所以我的问题是:手动将数据集添加到ElasticSearch集群以进行测试的最简单方法是什么?
1条答案
按热度按时间u0njafvf1#
您可以使用简单的Curl命令手动配置Elasticsearch,这将是一个简单的方法。
参考文件:https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-create-index.html
您也可以使用postman来管理这些curl,或者可能会在网上找到ES所需的API的**集合。