Easysearch Chart 0.2.0都有哪些變化

infinilabs發表於2023-10-10

Easysearch Chart 包更新了,讓我們來看看都有哪些變化:

  • Docker 映象升級

  • Service 名稱調整,支援 NodePort 模式部署



現在讓我們用 NodePort 模式部署一下:

# helm search repo infinilabsNAME                 	CHART VERSION	APP VERSION	DESCRIPTION
infinilabs/console   	0.2.0        	1.8.0-1259 	A Helm chart for Kubernetes
infinilabs/easysearch	0.2.0        	1.6.0-59   	A Helm chart for Kubernetes
infinilabs/gateway   	0.1.0        	1.18.0-1123	A Helm chart for Kubernetes# cat es-nodeport.yamlservice:
  type: NodePort
  http: 9200
  transport: 9300
  httpNodeport: 30920
  transNodeport: 30930# helm install easysearch infinilabs/easysearch -n infini -f es-nodeport.yamlNAME: easysearch
LAST DEPLOYED: Mon Oct  9 08:38:28 2023NAMESPACE: infini
STATUS: deployed
REVISION: 1TEST SUITE: None
NOTES:1. Get the application URL by running these commands:  export NODE_PORT=$(kubectl get --namespace infini -o jsonpath="{.spec.ports[0].nodePort}" services easysearch)
  export NODE_IP=$(kubectl get nodes --namespace infini -o jsonpath="{.items[0].status.addresses[0].address}")
  echo (S)                         AGE
easysearch   NodePort   10.43.175.245   <none>        9200:30920/TCP,9300:30930/TCP   25s# kubectl get pod -n infiniNAME           READY   STATUS    RESTARTS   AGE
easysearch-0   1/1     Running   0          40s# curl -ku'admin:admin' {
  "name" : "easysearch-0",  "cluster_name" : "infinilabs",  "cluster_uuid" : "2cPioaONRVWp6BydbGuXDw",  "version" : {
    "distribution" : "easysearch",    "number" : "1.6.0",    "distributor" : "INFINI Labs",    "build_hash" : "e5d1ff9067b3dd696d52c61fbca1f8daed931fb7",    "build_date" : "2023-09-22T00:55:32.292580Z",    "build_snapshot" : false,    "lucene_version" : "8.11.2",    "minimum_wire_lucene_version" : "7.7.0",    "minimum_lucene_index_compatibility_version" : "7.7.0"
  },  "tagline" : "You Know, For Easy Search!"}

關於 Easysearch

about easysearch

INFINI Easysearch 是一個分散式的近實時搜尋與分析引擎,核心引擎基於開源的 Apache Lucene。Easysearch 的目標是提供一個輕量級的 Elasticsearch 可替代版本,並繼續完善和支援更多的企業級功能。 與 Elasticsearch 相比,Easysearch 更關注在搜尋業務場景的最佳化和繼續保持其產品的簡潔與易用性。


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/70029458/viewspace-2988012/,如需轉載,請註明出處,否則將追究法律責任。

相關文章