Skip to content
Snippets Groups Projects
  1. Aug 28, 2018
  2. Aug 22, 2018
  3. Jul 10, 2018
  4. Jun 05, 2018
    • Di Xu's avatar
      fix docker opts incompatible running on aarch64 Redhat/Centos · f4d762bb
      Di Xu authored
      On Aarch64, the default cgroup driver for docker is systemd
      instead of cgroupfs. Should conform kubelet to use systemd
      as cgroup driver as well to keep it consistent with docker.
      
      Without this change, below exception will be raised.
      /usr/bin/docker-current: Error response from daemon: shim
      error: docker-runc not installed on system.
      
      Change-Id: Id496ec9eaac6580e4da2f3ef1a386c9abc2a5129
      f4d762bb
  5. May 16, 2018
    • Christopher J. Ruwe's avatar
      assert that number of pods on node does not exceed CIDR address range · c1bc4615
      Christopher J. Ruwe authored
      The number of pods on a given node is determined by the  --max-pods=k
      directive. When the address space is exhausted, no more pods can be
      scheduled even if from the --max-pods-perspective, the node still has
      capacity.
      
      The special case that a pod is scheduled and uses the node IP in the
      host network namespace is too "soft" to derive a guarantee.
      
      Comparing kubelet_max_pods with kube_network_node_prefix when given
      allows to assert that pod limits match the CIDR address space.
      c1bc4615
  6. Apr 29, 2018
  7. Apr 10, 2018
  8. Apr 09, 2018
    • Matthew Mosesohn's avatar
      Remove jinja2 dependency of do · f954bc0a
      Matthew Mosesohn authored
      While `do` looks cleaner, forcing this extra option in ansible.cfg
      seems to be more invasive. It would be better to keep the traditional
      approach of `set dummy = ` instead.
      f954bc0a
  9. Mar 31, 2018
  10. Mar 21, 2018
  11. Mar 17, 2018
  12. Mar 07, 2018
  13. Mar 03, 2018
  14. Feb 17, 2018
    • melkosoft's avatar
      Added cilium support (#2236) · f13e76d0
      melkosoft authored
      * Added cilium support
      
      * Fix typo in debian test config
      
      * Remove empty lines
      
      * Changed cilium version from <latest> to <v1.0.0-rc3>
      
      * Add missing changes for cilium
      
      * Add cilium to CI pipeline
      
      * Fix wrong file name
      
      * Check kernel version for cilium
      
      * fixed ci error
      
      * fixed cilium-ds.j2 template
      
      * added waiting for cilium pods to run
      
      * Fixed missing EOF
      
      * Fixed trailing spaces
      
      * Fixed trailing spaces
      
      * Fixed trailing spaces
      
      * Fixed too many blank lines
      
      * Updated tolerations,annotations in cilium DS template
      
      * Set cilium_version to iptables-1.9 to see if bug is fixed in CI
      
      * Update cilium image tag to v1.0.0-rc4
      
      * Update Cilium test case CI vars filenames
      
      * Add optional prometheus flag, adjust initial readiness delay
      
      * Update README.md with cilium info
      f13e76d0
  15. Jan 23, 2018
  16. Jan 22, 2018
  17. Jan 16, 2018
  18. Jan 09, 2018
  19. Jan 05, 2018
  20. Dec 23, 2017
  21. Dec 22, 2017
  22. Dec 20, 2017
  23. Nov 29, 2017
    • unclejack's avatar
      contiv network support (#1914) · e5d353d0
      unclejack authored
      
      * Add Contiv support
      
      Contiv is a network plugin for Kubernetes and Docker. It supports
      vlan/vxlan/BGP/Cisco ACI technologies. It support firewall policies,
      multiple networks and bridging pods onto physical networks.
      
      * Update contiv version to 1.1.4
      
      Update contiv version to 1.1.4 and added SVC_SUBNET in contiv-config.
      
      * Load openvswitch module to workaround on CentOS7.4
      
      * Set contiv cni version to 0.1.0
      
      Correct contiv CNI version to 0.1.0.
      
      * Use kube_apiserver_endpoint for K8S_API_SERVER
      
      Use kube_apiserver_endpoint as K8S_API_SERVER to make contiv talks
      to a available endpoint no matter if there's a loadbalancer or not.
      
      * Make contiv use its own etcd
      
      Before this commit, contiv is using a etcd proxy mode to k8s etcd,
      this work fine when the etcd hosts are co-located with contiv etcd
      proxy, however the k8s peering certs are only in etcd group, as a
      result the etcd-proxy is not able to peering with the k8s etcd on
      etcd group, plus the netplugin is always trying to find the etcd
      endpoint on localhost, this will cause problem for all netplugins
      not runnign on etcd group nodes.
      This commit make contiv uses its own etcd, separate from k8s one.
      on kube-master nodes (where net-master runs), it will run as leader
      mode and on all rest nodes it will run as proxy mode.
      
      * Use cp instead of rsync to copy cni binaries
      
      Since rsync has been removed from hyperkube, this commit changes it
      to use cp instead.
      
      * Make contiv-etcd able to run on master nodes
      
      * Add rbac_enabled flag for contiv pods
      
      * Add contiv into CNI network plugin lists
      
      * migrate contiv test to tests/files
      
      Signed-off-by: default avatarCristian Staretu <cristian.staretu@gmail.com>
      
      * Add required rules for contiv netplugin
      
      * Better handling json return of fwdMode
      
      * Make contiv etcd port configurable
      
      * Use default var instead of templating
      
      * roles/download/defaults/main.yml: use contiv 1.1.7
      
      Signed-off-by: default avatarCristian Staretu <cristian.staretu@gmail.com>
      e5d353d0
  24. Nov 06, 2017
  25. Nov 03, 2017
  26. Oct 30, 2017
  27. Oct 18, 2017
  28. Oct 16, 2017
  29. Oct 15, 2017
  30. Oct 11, 2017
  31. Sep 21, 2017
    • Jiri Stransky's avatar
      Allow setting cgroup driver for kubelet · dbbe9419
      Jiri Stransky authored
      Red Hat family platforms run docker daemon with `--exec-opt
      native.cgroupdriver=systemd`. When kubespray tried to start kubelet
      service, it failed with:
      
      Error: failed to run Kubelet: failed to create kubelet: misconfiguration: kubelet cgroup driver: "cgroupfs" is different from docker cgroup driver: "systemd"
      
      Setting kubelet's cgroup driver to the correct value for the platform
      fixes this issue. The code utilizes autodetection of docker's cgroup
      driver, as different RPMs for the same distro may vary in that regard.
      dbbe9419
  32. Sep 13, 2017
    • Matthew Mosesohn's avatar
      kubeadm support (#1631) · 67447260
      Matthew Mosesohn authored
      * kubeadm support
      
      * move k8s master to a subtask
      * disable k8s secrets when using kubeadm
      * fix etcd cert serial var
      * move simple auth users to master role
      * make a kubeadm-specific env file for kubelet
      * add non-ha CI job
      
      * change ci boolean vars to json format
      
      * fixup
      
      * Update create-gce.yml
      
      * Update create-gce.yml
      
      * Update create-gce.yml
      67447260
  33. Aug 30, 2017
Loading