cadvisor.manifest 668 B

123456789101112131415161718192021222324252627282930313233
  1. version: v1beta2
  2. id: cadvisor-agent
  3. containers:
  4. - name: cadvisor
  5. image: google/cadvisor:latest
  6. ports:
  7. - name: http
  8. containerPort: 8080
  9. hostPort: 4194
  10. volumeMounts:
  11. - name: varrun
  12. mountPath: /var/run
  13. readOnly: false
  14. - name: varlibdocker
  15. mountPath: /var/lib/docker
  16. readOnly: true
  17. - name: cgroups
  18. mountPath: /sys/fs/cgroup
  19. readOnly: true
  20. volumes:
  21. - name: varrun
  22. source:
  23. hostDir:
  24. path: /var/run
  25. - name: varlibdocker
  26. source:
  27. hostDir:
  28. path: /var/lib/docker
  29. - name: cgroups
  30. source:
  31. hostDir:
  32. path: /sys/fs/cgroup