- Nov 26, 2020
-
-
Bas van den Brink authored
-
Etienne Champetier authored
This new version uses the same base image as kube-proxy (k8s.gcr.io/build-image/debian-iptables) This allow to automatically pick iptables-legacy or iptables-nft, and be compatible with RHEL/CentOS 8 https://github.com/kubernetes/dns/pull/367 Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
-
- Nov 25, 2020
-
-
Andrii authored
-
- Nov 24, 2020
-
-
Barry Melbourne authored
-
Lee Spottiswood authored
-
- Nov 23, 2020
-
-
Hans Feldt authored
* fix flake8 errors in Kubespray CI - tox-inventory-builder * Invalidate CRI-O kubic repo's cache Signed-off-by: Victor Morales <v.morales@samsung.com> * add support to configure pkg install retries and use in CI job tf-ovh_ubuntu18-calico (due to it failing often) * Switch Calico, Cilium and MetalLB image repos to Quay.io Co-authored-by: Victor Morales <v.morales@samsung.com> Co-authored-by: Barry Melbourne <9964974+bmelbourne@users.noreply.github.com>
-
- Nov 13, 2020
-
-
Hans Feldt authored
calico PODs are first started and then in a handler killed and restarted for no reason, nothing has changed. By using the existing variable 'calico_cni_config' (only defined when calico has already started) the restart can be skipped.
-
- Nov 11, 2020
-
-
Sebastian P authored
The previous hash was still that of v7.3.1, see https://www.pypy.org/download.html for the hash of the current release.
-
- Nov 05, 2020
-
-
Mikael Johansson authored
-
- Nov 04, 2020
-
-
Hans Feldt authored
* create a wrapper script with pki options * supports all kubespray managed container engines Co-authored-by: Hans Feldt <hafe@users.noreply.github.com>
-
- Nov 03, 2020
-
-
Hans Feldt authored
Package upgrade restarts crio. By creating/updating config first, an extra restart can be avoided.
-
David Medinets authored
* Allow the eventRecordQPS setting to be set. The eventRecordQPS parameter controls rate limiting for event recording. When zero, unlimited events can cause denial-of-service situations. For my situation, I don't need more than a setting of "5". This change allows me to configure the setting before creating the cluster. * Allow the eventRecordQPS setting to be set. The default settings (see types.go) is five. So, this change does not affect the cluster provisioning. However, it does allow for the setting to be changed.
-
- Nov 02, 2020
-
-
Victor Morales authored
Fedora 31 uses Cgroups v2 by default. This change by passes the kernel parameter systemd.unified_cgroup_hierarchy=0. Signed-off-by: Victor Morales <v.morales@samsung.com>
-
- Oct 31, 2020
-
-
Kenichi Omichi authored
As https://helm.sh/blog/new-location-stable-incubator-charts/ helm stable repo is changed to https://charts.helm.sh/stable In addition, if using helm v3.4.0+ the old stable repo installation is failed. So this updates the stable repo to avoid such error.
-
- Oct 29, 2020
-
-
Florian Ruynat authored
-
Michal Skalski authored
When dns_mode was set to 'none' the coredns_server became an empty string and invalid operation of adding string to list was executed.
-
- Oct 28, 2020
-
-
Mikhail Snetkov authored
-
David Medinets authored
* update version of ingress-nginx controller. Change tag from controller-v0.34.0 to controller-v0.40.2 to use newest tag. * Update docs about aws deploy templates. In the yaml templates, there is no mention of idle timeouts. This is why I removed the documentation about it. This might be a mistake. Please verify this. I don't know enough to verify it myself. * Change label when checking version. When checking for `app.kubernetes.io/name=ingress-nginx`, a completed pod was selected which is not helpful when trying to `exec`. Changing the label selects the running controller pod. * put back the information about ELB Idle Timeouts. When I removed the information, I had overlooked that it was mentioned in the L7 yaml file. Thanks.
-
axelgobletbdr authored
* fixed bug in etcd retention where backups are not sorted by date * added directory filter to find command
-
- Oct 26, 2020
-
-
Hans Feldt authored
and thereby support upgrade from e.g. 1.18.x to 1.19.y Included OSes: - Centos7/8 - Ubuntu18/20 New variables for overriding by default installed packages: - centos_crio_packages - ubuntu_crio_packages
-
- Oct 23, 2020
-
-
axelgobletbdr authored
* added an ansible var to manage retention of etcd backups * refactord ls/grep into find in etcd backup removal command
-
Victor Morales authored
* Enable Kata Containers for CRI-O runtime Kata Containers is an OCI runtime where containers are run inside lightweight VMs. This runtime has been enabled for containerd runtime thru the kata_containers_enabled variable. This change enables Kata Containers to CRI-O container runtime. Signed-off-by: Victor Morales <v.morales@samsung.com> * Set appropiate conmon_cgroup when crio_cgroup_manager is 'cgroupfs' * Set manage_ns_lifecycle=true when KataContainers is enabed * Add preinstall check for katacontainers Signed-off-by: Victor Morales <v.morales@samsung.com> Co-authored-by: Pasquale Toscano <pasqualetoscano90@gmail.com>
-
- Oct 22, 2020
-
-
Florian Ruynat authored
-
Maciej authored
Command line flags aren't added to kube-proxy which results in missing feature gates set in this component. Add appropriate setting to ConfigMap instead. Signed-off-by: Maciej Wereski <m.wereski@partner.samsung.com>
-
- Oct 21, 2020
-
-
Hans Feldt authored
'ansible.vars.hostvars.HostVarsVars object' has no attribute 'kubeadm_upload_cert' kubeadm_upload_cert will never be found as a hostvar for the first master since the task is executed for a worker. Fix by executing the upload task for the first master and register the needed key. After that, workers can read hostvars for the master Var kubeadm_etcd_refresh_cert_key removed since it no longer has any use.
-
Hans Feldt authored
When using kubeadm managed etcd, configuring an etcd group can now be skipped.
-
Florian Ruynat authored
-
wand3r3r authored
* Adding option to disable gloablly applying a proxy to etc/yum.conf * Change made to proxy_yum_globaly basedon reviewer feedback * fix trailing spaces in ymllint
-
- Oct 20, 2020
-
-
Etienne Champetier authored
This fixes the Containerd + EL8 case that was missed in 7d1ab337 On CentOS 8 with proxy ansible render inline `proxy` and `module_hotfixes` options. For example: ``` proxy=http://127.0.0.1:3128module_hotfixes=True ``` But expected result: ``` proxy=http://127.0.0.1:3128 module_hotfixes=True ``` Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
-
- Oct 19, 2020
-
-
David Louks authored
* Use existing variable for tiller service account name * keep crb as tiller
-
- Oct 15, 2020
-
-
Florent Monbillard authored
-
- Oct 13, 2020
-
-
Hans Feldt authored
* bump crio version to 1.19 * crio package name has changed for debian/ubuntu * crio upgrade does not work, see #6757 * update crio info in docs
-
Sergey authored
-
Samuel Liu authored
-
yelhouti authored
-
Hans Feldt authored
crio refuses to delete pods when cni is unavailable which is the case e.g. using calico with kdd datastore. See: https://github.com/cri-o/cri-o/issues/4084 Fix by deleting storage associated with containers. Stop and disable crio service so switching container runtime can be done.
-
- Oct 12, 2020
-
-
Bogdan Peste authored
* Added option to force apiserver and respective client certificate to be regenerated without necessarily needing to bump the K8S cluster version * Removed extra blank line
-
- Oct 11, 2020
-
-
holmesb authored
Signed-off-by: holmesb <5072156+holmesb@users.noreply.github.com>
-
Nikita Velgin authored
Handlers with the same name (Kubeadm | restart kubelet) leads to incorrect playbook execution. As a result, after completing the tasks, kubelet does not restart. This PR fix this behavior
-
Hans Feldt authored
Users should opt in for features and not opt out.
-