Skip to content
  1. Jun 16, 2017
  2. Jun 03, 2017
  3. May 24, 2017
  4. May 19, 2017
  5. Apr 28, 2017
  6. Apr 20, 2017
  7. Apr 18, 2017
    • Justin's avatar
      Fix IPS array variable expansion · 9503434d
      Justin authored
      $IPS only expands to the first ip address in the array:
      
      justin@box:~$ declare -a IPS=(10.10.1.3 10.10.1.4 10.10.1.5)
      justin@box:~$ echo $IPS
      10.10.1.3
      justin@box:~$ echo ${IPS[@]}
      10.10.1.3 10.10.1.4 10.10.1.5
      9503434d
  8. Apr 15, 2017
  9. Mar 30, 2017
    • Justin Downing's avatar
      Update upgrades.md · fbded9cd
      Justin Downing authored
      Clarify that the `kube_version` environment variable is needed for the CLI "graceful upgrade". Also add and example to check that the upgrade was successful.
      fbded9cd
  10. 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
  11. Mar 22, 2017
  12. Mar 16, 2017
  13. Mar 15, 2017
  14. 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
  15. Mar 01, 2017
  16. Feb 28, 2017
  17. Feb 26, 2017
  18. Feb 23, 2017
  19. Feb 18, 2017
  20. Feb 17, 2017
  21. 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
  22. Feb 15, 2017
  23. Feb 14, 2017
  24. Feb 10, 2017
  25. Feb 09, 2017
  26. Feb 07, 2017
  27. Feb 06, 2017
  28. Feb 05, 2017
Loading