Skip to content
  1. Mar 23, 2017
    • Vladimir Rutsky's avatar
      replace non-breakable space with regular space · c4e57477
      Vladimir Rutsky authored
      Non-brekable space is 0xc2 0xa0 byte sequence in UTF-8.
      
      To find one:
      
          $ git grep -I -P '\xc2\xa0'
      
      To replace with regular space:
      
          $ git grep -l -I -P '\xc2\xa0' | xargs sed -i 's/\xc2\xa0/ /g'
      
      This commit doesn't include changes that will overlap with commit f1c59a91.
      c4e57477
  2. Mar 22, 2017
  3. Mar 16, 2017
  4. Mar 15, 2017
  5. Mar 03, 2017
    • Vincent Schwarzer's avatar
      Added Missing AWS IAM Profiles and Policies · 5ae85b9d
      Vincent Schwarzer authored
      The AWS IAM profiles and policies required to run Kargo on AWS
      are no longer hosted in the kubernetes main repo since kube-up got
      deprecated. Hence we have to move the files into the kargo repository.
      5ae85b9d
  6. Mar 01, 2017
  7. Feb 28, 2017
  8. Feb 26, 2017
  9. Feb 23, 2017
  10. Feb 18, 2017
  11. Feb 17, 2017
  12. Feb 16, 2017
    • Matthew Mosesohn's avatar
      Add graceful upgrade process · 97ebbb96
      Matthew Mosesohn authored
      Based on #718 introduced by rsmitty.
      
      Includes all roles and all options to support deployment of
      new hosts in case they were added to inventory.
      
      Main difference here is that master role is evaluated first
      so that master components get upgraded first.
      
      Fixes #694
      97ebbb96
  13. Feb 15, 2017
  14. Feb 14, 2017
  15. Feb 10, 2017
  16. Feb 09, 2017
  17. Feb 07, 2017
  18. Feb 06, 2017
  19. Feb 05, 2017
  20. Jan 20, 2017
    • Bogdan Dobrelya's avatar
      Drop linux capabilities and rework users/groups · cb2e5ac7
      Bogdan Dobrelya authored
      
      
      * Drop linux capabilities for unprivileged containerized
        worlkoads Kargo configures for deployments.
      * Configure required securityContext/user/group/groups for kube
        components' static manifests, etcd, calico-rr and k8s apps,
        like dnsmasq daemonset.
      * Rework cloud-init (etcd) users creation for CoreOS.
      * Fix nologin paths, adjust defaults for addusers role and ensure
        supplementary groups membership added for users.
      * Add netplug user for network plugins (yet unused by privileged
        networking containers though).
      * Grant the kube and netplug users read access for etcd certs via
        the etcd certs group.
      * Grant group read access to kube certs via the kube cert group.
      * Remove priveleged mode for calico-rr and run it under its uid/gid
        and supplementary etcd_cert group.
      * Adjust docs.
      * Align cpu/memory limits and dropped caps with added rkt support
        for control plane.
      
      Signed-off-by: default avatarBogdan Dobrelya <bogdando@mail.ru>
      cb2e5ac7
  21. Jan 19, 2017
    • Matthew Mosesohn's avatar
      Add scale thresholds to split etcd and k8s-masters · f742fc3d
      Matthew Mosesohn authored
      Also adds calico-rr group if there are standalone etcd nodes.
      Now if there are 50 or more nodes, 3 etcd nodes will be standalone.
      If there are 200 or more nodes, 2 kube-masters will be standalone.
      If thresholds are exceeded, kube-node group cannot add nodes that
      belong to etcd or kube-master groups (according to above statements).
      f742fc3d
  22. Jan 17, 2017
  23. Jan 11, 2017
  24. Jan 10, 2017
  25. Jan 09, 2017
  26. Jan 06, 2017
  27. Jan 02, 2017
  28. Dec 29, 2016
  29. Dec 28, 2016
Loading