1. 06 Jan, 2019 2 commits
  2. 05 Jan, 2019 11 commits
  3. 04 Jan, 2019 1 commit
  4. 03 Jan, 2019 4 commits
  5. 29 Dec, 2018 3 commits
  6. 28 Dec, 2018 11 commits
  7. 27 Dec, 2018 2 commits
  8. 26 Dec, 2018 1 commit
  9. 24 Dec, 2018 1 commit
  10. 21 Dec, 2018 1 commit
  11. 19 Dec, 2018 1 commit
  12. 18 Dec, 2018 2 commits
    • saad-ali's avatar
      Ensure volume mount err checking done inside op · 6804ad6c
      saad-ali authored
      Ensure volume mount error checking is done inside the operation so that
      failures get handled with exponential backoff, etc.
      6804ad6c
    • Rafael Fernández López's avatar
      Fix race condition when joining nodes · becb2b75
      Rafael Fernández López authored
      Despite we were checking for the kubelet kubeconfig file to be present, the
      kubelet first writes this file and then the certificates the kubeconfig file
      refers to. This represents a race condition in kubeadm in which when we confirm
      that the kubelet's kubeconfig file is present we continue creating a clientset
      out of it. However, the clientset creation will ensure that the certificates the
      kubeconfig file refers to exist on the filesystem.
      
      To fix this problem, not only wait for the kubelet's kubeconfig file to be
      present, but also ensure that we can create a clientset ouf of it on our polling
      process, while we wait for the kubelet to have performed the TLS bootstrap.
      becb2b75