Install Metrics Server on a Kubernetes ARM cluster

Clone the Git repository at https://github.com/kubernetes-sigs/metrics-server.git

In the deploy/1.8+/metrics-server-deployment.yaml file replace:


    image: k8s.gcr.io/metrics-server-amd64:v0.3.6            
        

with:


    image: k8s.gcr.io/metrics-server-arm:v0.3.6            
        

Note the version might been newer for the amd64 line, if that is the case adjust the second line to match that version.

And the issue the following command line to install the metrics server:

            
    kubectl create -f deploy/1.8+/
        

And voila you now have a metric server running on your Kubernetes ARM cluster.

Posted December 18th, 2019

Up