Browse Source

Update cilium minimum kernel preinstall check (#6376)

Signed-off-by: Arthur Outhenin-Chalandre <arthur@cri.epita.fr>
pull/6393/head
Arthur Outhenin-Chalandre 4 years ago
committed by GitHub
parent
commit
05b9f14b76
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. 2
      roles/kubernetes/preinstall/tasks/0020-verify-settings.yml

2
roles/kubernetes/preinstall/tasks/0020-verify-settings.yml

@ -128,7 +128,7 @@
- name: Stop if kernel version is too low
assert:
that: ansible_kernel.split('-')[0] is version('4.8', '>=')
that: ansible_kernel.split('-')[0] is version('4.9.17', '>=')
when:
- kube_network_plugin == 'cilium'
- not ignore_assert_errors

Loading…
Cancel
Save