Kubernetes Metrics Server Operations: Difference between revisions
Jump to navigation
Jump to search
Line 39: | Line 39: | ||
kubectl apply -f https://github.com/kubernetes-sigs/metrics-server/releases/download/v0.3.7/components.yaml | kubectl apply -f https://github.com/kubernetes-sigs/metrics-server/releases/download/v0.3.7/components.yaml | ||
</syntaxhighlight> | </syntaxhighlight> | ||
The up-to-date release list can be found here: https://github.com/kubernetes-sigs/metrics-server/tags | |||
If configuration needs to be changed, pull the file locally and install it with: | If configuration needs to be changed, pull the file locally and install it with: | ||
<syntaxhighlight lang='text'> | <syntaxhighlight lang='text'> | ||
Line 54: | Line 57: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
It is deployed in the 'kube-system' namespace. | It is deployed in the 'kube-system' namespace. | ||
====Configuration==== | ====Configuration==== | ||
For Docker Desktop Kubernetes, add "--kubelet-insecure-tls", otherwise the pod reads will fail with: | For Docker Desktop Kubernetes, add "--kubelet-insecure-tls", otherwise the pod reads will fail with: |
Revision as of 23:17, 30 December 2020
External
Internal
Help
docker run --rm k8s.gcr.io/metrics-server/metrics-server:v0.3.7 --help
Installation
With Helm
Can be installed directly from the "stable" repository:
helm install metrics-server stable/metrics-server --set args="{--kubelet-insecure-tls,--cert-dir=/tmp}"
Alternatively, the chart can be built locally with with 'helm package ./metrics-server', then installed with:
helm install ms ./metrics-server-2.11.2.tgz -f ./values.yaml
where values.yaml:
image:
repository: k8s.gcr.io/metrics-server/metrics-server
tag: v0.3.7
args:
- --kubelet-insecure-tls
- --cert-dir=/tmp
With Manifest
Docker Desktop Kubernetes
Install
kubectl apply -f https://github.com/kubernetes-sigs/metrics-server/releases/download/v0.3.7/components.yaml
The up-to-date release list can be found here: https://github.com/kubernetes-sigs/metrics-server/tags
If configuration needs to be changed, pull the file locally and install it with:
kubectl apply -f ./components.yaml
clusterrole.rbac.authorization.k8s.io/system:aggregated-metrics-reader created
clusterrolebinding.rbac.authorization.k8s.io/metrics-server:system:auth-delegator created
rolebinding.rbac.authorization.k8s.io/metrics-server-auth-reader created
apiservice.apiregistration.k8s.io/v1beta1.metrics.k8s.io created
serviceaccount/metrics-server created
deployment.apps/metrics-server created
service/metrics-server created
clusterrole.rbac.authorization.k8s.io/system:metrics-server created
clusterrolebinding.rbac.authorization.k8s.io/system:metrics-server created
It is deployed in the 'kube-system' namespace.
Configuration
For Docker Desktop Kubernetes, add "--kubelet-insecure-tls", otherwise the pod reads will fail with:
x509: certificate signed by unknown authority
kind: Deployment
metadata:
name: metrics-server
spec:
template:
spec:
containers:
- name: metrics-server
args:
- --kubelet-insecure-tls
- --cert-dir=/tmp
- --secure-port=4443
Uninstall
Uninstall all the Kubernetes API resources. To reconfigure, it is sufficient to uninstall then re-install the deployment.