Skip to content
  1. Aug 21, 2017
  2. Aug 20, 2017
  3. Aug 14, 2017
  4. Aug 01, 2017
  5. Jul 31, 2017
  6. Jul 28, 2017
  7. Jul 27, 2017
  8. Jul 24, 2017
  9. Jul 18, 2017
  10. Jul 17, 2017
  11. Jul 12, 2017
  12. Jul 11, 2017
  13. Jun 23, 2017
  14. Jun 22, 2017
  15. Jun 21, 2017
  16. Jun 19, 2017
  17. Jun 16, 2017
  18. Jun 12, 2017
  19. Jun 03, 2017
  20. May 29, 2017
  21. May 24, 2017
  22. May 19, 2017
  23. Apr 28, 2017
  24. Apr 20, 2017
  25. 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
  26. Apr 15, 2017
  27. 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
  28. 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
Loading