Skip to content
  1. Oct 29, 2018
  2. Oct 24, 2018
  3. Oct 21, 2018
  4. Oct 20, 2018
  5. Oct 16, 2018
    • Rong Zhang's avatar
    • JuanJo Ciarlante's avatar
      [jjo] add kube-router support (#3339) · a5edd0d7
      JuanJo Ciarlante authored
      * [jjo] add kube-router support
      
      Fixes cloudnativelabs/kube-router#147.
      
      * add kube-router as another network_plugin choice
      * support most used kube-router flags via
        `kube_router_foo` vars as other plugins
      * implement replacing kube-proxy (--run-service-proxy=true) via
        `kube_proxy_mode: none`, verified in a _non kubeadm_enabled_
        install, should also work for recent kubeadm releases via
        `skipKubeProxyInstall: true` config
      
      * [jjo] address PR#3339 review from @woopstar
      
      * add busybox image used by kube-router to downloads
      
      * fix busybox download groups key
      
      * rework kubeadm_enabled + kube_router_run_service_proxy
      
      - verify it working ok w/the kubeadm_enabled and
        kube_router_run_service_proxy true or false
      
      - introduce `kube_proxy_remove` fact, to decouple logic
        from kube_proxy_mode (which affects kubeadm configmap
        settings, thus no-good to ab-use it to 'none')
      
      * improve kube-router.md re: kubeadm_enabled and kube_router_run_service_proxy
      
      * address @woopstar latest review
      
      * add inventory/sample/group_vars/k8s-cluster/k8s-net-kube-router.yml
      
      * fix kube_router_run_service_proxy conditional for kube-proxy removal
      
      * fix kube_proxy_remove fact (w/ |bool), add some needed kube-proxy tags on my and existing changes
      
      * update kube-router tolerations for 1.12 compatibility
      
      * add PriorityClass to kube-router DaemonSet
      a5edd0d7
  6. Oct 11, 2018
  7. Oct 10, 2018
  8. Oct 08, 2018
  9. Oct 05, 2018
    • Chad Swenson's avatar
      Support multiple local volume provisioner StorageClasses (#3450) · 6602760a
      Chad Swenson authored
      - Local Volume StorageClass configuration is now manged by `local_volume_provisioner_storage_classes`, a list of maps that specifies local storage classes with `name` `host_dir` and `mount_dir` keys per entry
      - Tasks and templates updated to loop through local volume storage classes
      - Previous defaults for path/class names were not changed
      - Fixed an issue where a `kubernetes/preinstall` was creating directories inconsistently with the `kubernetes-apps/external_provisioner/local_volume_provisioner` task
      6602760a
  10. Oct 04, 2018
  11. Sep 28, 2018
  12. Sep 26, 2018
    • Hoat Le's avatar
      Ansible var should be quoted (#3393) · c7c3effd
      Hoat Le authored
      to fix the follow problem in case quote is not used:
      
      PLAY [k8s-cluster:etcd:calico-rr] **********************************************
      ERROR! Syntax Error while loading YAML.
        expected <block end>, but found '<scalar>'
      
      The error appears to have been in '/tmp/vagrant-ansible/inventory/group_vars/k8s-cluster.yml': line 59, column 39, but may
      be elsewhere in the file depending on the exact syntax problem.
      
      The offending line appears to be:
      
      kube_oidc_ca_file: {{ kube_cert_dir }}/openid-ca.pem
                                            ^ here
      We could be wrong, but this one looks like it might be an issue with
      missing quotes.  Always quote template expression brackets when they
      start a value. For instance:
      
          with_items:
            - {{ foo }}
      
      Should be written as:
      
          with_items:
            - "{{ foo }}"
      
      Ansible failed to complete successfully. Any error output should be
      visible above. Please fix these errors and try again.
      c7c3effd
  13. Sep 25, 2018
  14. Sep 21, 2018
  15. Sep 20, 2018
  16. Sep 18, 2018
  17. Sep 17, 2018
  18. Sep 13, 2018
  19. Sep 10, 2018
  20. Sep 09, 2018
  21. Sep 08, 2018
  22. Sep 04, 2018
  23. Sep 03, 2018
  24. Sep 01, 2018
  25. Aug 31, 2018
  26. Aug 28, 2018
  27. Aug 24, 2018
  28. Aug 23, 2018
    • Aivars Sterns's avatar
      calico upgrade to v3 (#3086) · 23fd3461
      Aivars Sterns authored
      * calico upgrade to v3
      
      * update calico_rr version
      
      * add missing file
      
      * change contents of main.yml as it was left old version
      
      * enable network policy by default
      
      * remove unneeded task
      
      * Fix kubelet calico settings
      
      * fix when statement
      
      * switch back to node-kubeconfig.yaml
      23fd3461
Loading