Skip to content
Snippets Groups Projects
  1. Oct 13, 2020
  2. Aug 27, 2020
  3. May 29, 2020
  4. Apr 25, 2020
  5. Sep 10, 2019
    • Matthew Mosesohn's avatar
      Add support for k8s v1.16.0-beta.2 (#5148) · 27ec548b
      Matthew Mosesohn authored
      Cleaned up deprecated APIs:
      apps/v1beta1
      apps/v1beta2
      extensions/v1beta1 for ds,deploy,rs
      
      Add workaround for deploying helm using incompatible
      deployment manifest.
      Change-Id: I78b36741348f47a999df3841ee63cf4e6f377830
      27ec548b
  6. Aug 09, 2019
  7. May 08, 2019
  8. May 03, 2019
  9. Apr 24, 2019
  10. Apr 23, 2019
  11. Apr 17, 2019
  12. Apr 01, 2019
  13. Mar 28, 2019
  14. Mar 13, 2019
  15. Jan 29, 2019
    • Thomas Nys's avatar
      Set cluster DNS correctly in case of nodelocal dns cache (#3879) · 68fd7e39
      Thomas Nys authored
      * Set cluster DNS correctly in case of nodelocal dns cache
      
      * Pass in cluster_ip based on dns mode
      
      * Disable nodelocaldns by default
      
      * Fix syntax error
      
      * Fix syntax issue
      
      * Add nodelocadns ip to vars of node installation
      
      * Change location of nodelocaldns_ip
      
      * Try to remove newlines from jinja template
      
      * Add debug for config file
      
      * Move parameter logic outside of template
      
      * Adapt templates after feedback
      
      * Remove debugging
      68fd7e39
  16. Jan 28, 2019
  17. Dec 11, 2018
  18. Dec 06, 2018
    • Andreas Krüger's avatar
      Remove non-kubeadm deployment (#3811) · ddffdb63
      Andreas Krüger authored
      * Remove non-kubeadm deployment
      
      * More cleanup
      
      * More cleanup
      
      * More cleanup
      
      * More cleanup
      
      * Fix gitlab
      
      * Try stop gce first before absent to make the delete process work
      
      * More cleanup
      
      * Fix bug with checking if kubeadm has already run
      
      * Fix bug with checking if kubeadm has already run
      
      * More fixes
      
      * Fix test
      
      * fix
      
      * Fix gitlab checkout untill kubespray 2.8 is on quay
      
      * Fixed
      
      * Add upgrade path from non-kubeadm to kubeadm. Revert ssl path
      
      * Readd secret checking
      
      * Do gitlab checks from v2.7.0 test upgrade path to 2.8.0
      
      * fix typo
      
      * Fix CI jobs to kubeadm again. Fix broken hyperkube path
      
      * Fix gitlab
      
      * Fix rotate tokens
      
      * More fixes
      
      * More fixes
      
      * Fix tokens
      ddffdb63
  19. Dec 04, 2018
  20. Nov 15, 2018
    • Andreas Krüger's avatar
      Update CoreDNS, KubeDNS and Autoscaler to newest templates (#3711) · 6f6274d0
      Andreas Krüger authored
      * Update DNS Autoscaler to latest
      
      * Update CoreDNS to latest
      
      * Update KubeDNS to latest
      
      * Add KubeDNS config map
      
      * Fix filename
      
      * Add missing selector to DNS Autoscaler
      
      * Add missing tolerations
      6f6274d0
    • Andreas Krüger's avatar
      Enable DNS AutoScaler for CoreDNS (#3707) · 17f07e26
      Andreas Krüger authored
      * Enable AutoScaler for CoreDNS
      
      * Only use one template for dns autoscaler
      
      * Rename a few variables for replicas and minimum pods
      
      * Rename a few variables for replicas and minimum pods
      
      * Remove replicas to make autoscale work
      
      * Cleanup kubedns-autoscaler as it has been renamed
      17f07e26
  21. Nov 14, 2018
  22. Oct 17, 2018
  23. Oct 08, 2018
  24. Aug 22, 2018
  25. Aug 09, 2018
  26. Aug 07, 2018
  27. Mar 30, 2018
  28. Mar 29, 2018
  29. Mar 17, 2018
  30. Feb 05, 2018
  31. Jan 29, 2018
  32. Dec 05, 2017
    • Chad Swenson's avatar
      Support for disabling apiserver insecure port · b8788421
      Chad Swenson authored
      This allows `kube_apiserver_insecure_port` to be set to 0 (disabled).
      
      Rework of #1937 with kubeadm support
      
      Also, fixed an issue in `kubeadm-migrate-certs` where the old apiserver cert was copied as the kubeadm key
      b8788421
  33. Nov 15, 2017
  34. Nov 14, 2017
  35. Nov 07, 2017
    • Chad Swenson's avatar
      Support for disabling apiserver insecure port · 0c7e1889
      Chad Swenson authored
      This allows `kube_apiserver_insecure_port` to be set to 0 (disabled). It's working, but so far I have had to:
      
      1. Make the `uri` module "Wait for apiserver up" checks use `kube_apiserver_port` (HTTPS)
      2. Add apiserver client cert/key to the "Wait for apiserver up" checks
      3. Update apiserver liveness probe to use HTTPS ports
      4. Set `kube_api_anonymous_auth` to true to allow liveness probe to hit apiserver's /healthz over HTTPS (livenessProbes can't use client cert/key unfortunately)
      5. RBAC has to be enabled. Anonymous requests are in the `system:unauthenticated` group which is granted access to /healthz by one of RBAC's default ClusterRoleBindings. An equivalent ABAC rule could allow this as well.
      
      Changes 1 and 2 should work for everyone, but 3, 4, and 5 require new coupling of currently independent configuration settings. So I also added a new settings check.
      
      Options:
      
      1. The problem goes away if you have both anonymous-auth and RBAC enabled. This is how kubeadm does it. This may be the best way to go since RBAC is already on by default but anonymous auth is not.
      2. Include conditional templates to set a different liveness probe for possible combinations of `kube_apiserver_insecure_port = 0`, RBAC, and `kube_api_anonymous_auth` (won't be possible to cover every case without a guaranteed authorizer for the secure port)
      3. Use basic auth headers for the liveness probe (I really don't like this, it adds a new dependency on basic auth which I'd also like to leave independently configurable, and it requires encoded passwords in the apiserver manifest)
      
      Option 1 seems like the clear winner to me, but is there a reason we wouldn't want anonymous-auth on by default? The apiserver binary defaults anonymous-auth to true, but kubespray's default was false.
      0c7e1889
Loading