Status | stable |
OCI Reference | cgr.dev/chainguard/cadvisor |
- View Image in Chainguard Academy
- View Image Catalog for a full list of available tags. Contact Chainguard for enterprise support, SLAs, and access to older tags.
cAdvisor (Container Advisor) provides container users an understanding of the resource usage and performance characteristics of their running containers.
The image is available on cgr.dev
:
docker pull cgr.dev/chainguard/cadvisor
See the RUNNING.md for the instructions. For the Kubernetes deployment, you can use the Kustomize:
cat <<EOF >> kustomization.yaml
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- https://github.com/google/cadvisor/deploy/kubernetes/base?ref=master
images:
- name: gcr.io/cadvisor/cadvisor
newName: cgr.dev/chainguard/cadvisor
newTag: latest
namespace: cadvisor
EOF
kubectl apply -k .