Skip to content

Latest commit

 

History

History
 
 

cadvisor

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

cadvisor

Status stable
OCI Reference cgr.dev/chainguard/cadvisor

cAdvisor (Container Advisor) provides container users an understanding of the resource usage and performance characteristics of their running containers.

Get It!

The image is available on cgr.dev:

docker pull cgr.dev/chainguard/cadvisor

Usage

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 .