1. 27 Aug, 2019 1 commit
  2. 20 Aug, 2019 1 commit
  3. 15 Aug, 2019 1 commit
  4. 13 Aug, 2019 1 commit
  5. 12 Aug, 2019 1 commit
  6. 07 Aug, 2019 4 commits
  7. 23 Jul, 2019 7 commits
  8. 11 Jul, 2019 3 commits
  9. 25 Jun, 2019 1 commit
    • CIS chart (#45) · ff3d5692
      Murali Paluru authored
      * important stuff: update README
      
      * cis chart - initial version
      
      * updating to use same image
      
      * adding owner
      
      * fixing the image name, version
  10. 19 Jun, 2019 3 commits
  11. 17 Jun, 2019 1 commit
  12. 11 Jun, 2019 2 commits
  13. 10 Jun, 2019 1 commit
    • Set maxUnavailable to 1 for registry deployment · dd0ab35d
      gitlawr authored
      Problem:
      Registry pod stuck in AttchVolumeFailed status on upgrade. Deadlock happens where the new pod waits the old pod to dettach the volume, and the old one waits for the new one to be ready.
      
      Solution:
      Set maxUnavailable to 1, so that the old pod can be released before the new pod is ready.
  14. 07 Jun, 2019 1 commit
  15. 04 Jun, 2019 1 commit
  16. 31 May, 2019 3 commits
  17. 29 May, 2019 4 commits
  18. 21 May, 2019 1 commit
  19. 20 May, 2019 2 commits
  20. 14 May, 2019 1 commit
    • Fix error expression for container resources query · 3c02c7d4
      Frank Mai authored
      **Problem:**
      There are two kubelet scraping targets on Prometheus, one is scraping `/metrics`, another one is scraping `/metrics/cadvisor`.
      The metrics from `/metrics` endpoint are not including `container_name`.
      So the `container_*` expression will double the actual mount without
      `conatiner_name!=""`
      
      **Solution:**
      Add `container_name!=""` into the expression
      
      **Issue:**
      https://github.com/rancher/rancher/issues/20162