简体   繁体   中英

How to Install ELK Stack in AKS and How to SSH into Node in both (AKS and GKE)

I want to know how to ssh into nodes in both GKE and AKS and also how to install ELK stack in Kube.netes cluster.

Any links with step by step will be helpful for me.

Not able to connect with this command: gcloud compute ssh <NODE_NAME> --zone <ZONE> .

That is the correct command to ssh into a GKE node, maybe your default project is wrong; I suggest you try with:

gcloud compute ssh "gke-node-name" --zone "your-zone" --project "your-cluster-project"

Now, if your goal is to deploy the ELK stack in your Kube.netes cluster, then there is no need to ssh into the nodes; you can easily use the Official Elastic Docker images and deploy them in your cluster as specified in the Running the Elastic Stack on Kube.netes guide.

Additionally, you can take a look at this tutorial about Deploying a containerized web application .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM