Skip to content
  1. Mar 27, 2017
  2. Mar 24, 2017
  3. 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
  4. Mar 21, 2017
  5. Mar 17, 2017
  6. Mar 15, 2017
  7. Mar 14, 2017
    • Vincent Schwarzer's avatar
      Granular authentication Control · 026da060
      Vincent Schwarzer authored
      It is now possible to deactivate selected authentication methods
      (basic auth, token auth) inside the cluster by adding
      removing the required arguments to the Kube API Server and generating
      the secrets accordingly.
      
      The x509 authentification is currently not optional because disabling it
      would affect the kubectl clients deployed on the master nodes.
      026da060
    • Matthew Mosesohn's avatar
      Migrate k8s data to etcd3 api store · 804e9a09
      Matthew Mosesohn authored
      Default backend is now etcd3 (was etcd2).
      The migration process consists of the following steps:
      * check if migration is necessary
      * stop etcd on first etcd server
      * run migration script
      * start etcd on first etcd server
      * stop kube-apiserver until configuration is updated
      * update kube-apiserver
      * purge old etcdv2 data
      804e9a09
  8. Mar 13, 2017
  9. Mar 06, 2017
  10. Mar 04, 2017
  11. Mar 03, 2017
  12. Mar 02, 2017
  13. Mar 01, 2017
    • Vijay Katam's avatar
      Add support for atomic host · a0b1eda1
      Vijay Katam authored
      Updates based on feedback
      
      Simplify checks for file exists
      
      remove invalid char
      
      Review feedback. Use regular systemd file.
      
      Add template for docker systemd atomic
      a0b1eda1
  14. Feb 28, 2017
  15. Feb 27, 2017
  16. Feb 24, 2017
  17. Feb 23, 2017
  18. Feb 21, 2017
  19. Feb 18, 2017
    • Abel Lopez's avatar
      Safe disable SELinux · 0bfc2d0f
      Abel Lopez authored
      Sometimes, a sysadmin might outright delete the SELinux rpms and
      delete the configuration. This causes the selinux module to fail
      with
      ```
      IOError: [Errno 2] No such file or directory: '/etc/selinux/config'\n",
      "module_stdout": "", "msg": "MODULE FAILURE"}
      ```
      
      This simply checks that /etc/selinux/config exists before we try
      to set it Permissive.
      
      Update from feedback
      0bfc2d0f
    • Matthew Mosesohn's avatar
      Add no_log to cert tar tasks · a21eb036
      Matthew Mosesohn authored
      This works around 4MB limit for gitlab CI runner.
      a21eb036
    • Andrew Greenwood's avatar
      Cleanup legacy syntax, spacing, files all to yml · ca9ea097
      Andrew Greenwood authored
      Migrate older inline= syntax to pure yml syntax for module args as to be consistant with most of the rest of the tasks
      Cleanup some spacing in various files
      Rename some files named yaml to yml for consistancy
      ca9ea097
  20. Feb 16, 2017
  21. Feb 14, 2017
  22. Feb 13, 2017
    • Vladimir Rutsky's avatar
      set "check_mode: no" for read-only "shell" steps that registers result · 09847567
      Vladimir Rutsky authored
      "shell" step doesn't support check mode, which currently leads to failures,
      when Ansible is being run in check mode (because Ansible doesn't run command,
      assuming that command might have effect, and no "rc" or "output" is registered).
      
      Setting "check_mode: no" allows to run those "shell" commands in check mode
      (which is safe, because those shell commands doesn't have side effects).
      09847567
Loading