how to use digital ocean's kubernetes and set auto-scale?

12/18/2018

I'm working on kubernetes. Now I tried Digital Ocean's kubernetes which is very easy to install and access, but how can I install metric-server in it? how can I auto scale in kubernetes by DO? Please reply as soon as possible.

-- AATHITH RAJENDRAN
autoscaling
digital-ocean
kubernetes

1 Answer

12/18/2018

The Metrics Server can be installed to your cluster with Helm:

https://github.com/helm/charts/tree/master/stable/metrics-server

helm init
helm upgrade --install metrics-server --namespace=kube-system stable/metrics-server

with RBAC enabled, see the more comprehensive instructions for installing Helm into your cluster:

https://github.com/helm/helm/blob/master/docs/rbac.md

If you wish to deploy without Helm, the manifests are available from the GitHub repository:

https://github.com/kubernetes-incubator/metrics-server/tree/master/deploy/1.8%2B

-- Rawkode
Source: StackOverflow