Harshdeep Kanhai
Harshdeep Kanhai

Reputation: 89

How to deploy a single node elasticsearch cluster in Google Kubernetes engine?

I have configured a small instance of google kubernetes cluster with one node. I want to deploy elasticsearch service in this cluster. How do I set up that? I need the necessary steps.

Upvotes: 0

Views: 2535

Answers (2)

Alioua
Alioua

Reputation: 1776

In Google Cloud Marketplacep there are different categorie of elasticsearch if you want container images:

enter image description here

You need just to use the gcloud pull command

Elasticsearch 5:

gcloud auth configure-docker && docker pull marketplace.gcr.io/google/elasticsearch5:latest

Elasticsearch 6:

gcloud auth configure-docker && docker pull marketplace.gcr.io/google/elasticsearch6:latest

For kubernetes app (like depluing directly to your cluster)

enter image description hereenter image description here

As well you can deply using HELM as suggested by @Luiz

Upvotes: 1

Luiz Ferraz
Luiz Ferraz

Reputation: 1525

You can use the elasticsearch helm chart and manually tune it's resources limits and requests to fit into one node.

Upvotes: 0

Related Questions