Skip to content

v1.19.9+k8e1

Compare
Choose a tag to compare
@xiaods xiaods released this 10 Apr 07:25
2fbeb9d
root@ruvds-2djjx:~# ./k8e -v
k8e version v1.19.9+k8e1 (450ced38)

Changes since v1.19.8+k8e3:

  • Upgrade coredns version to v1.8.0
  • Add make command: clean and package-airgap
  • Add nerdctl command to static folder: /var/lib/k8e/k8e/data/bin/nerdctl
  • Upgrade to containerd v1.4.4-k3s1 addressing CVE-2021-21334 in containerd/cri (#3085)
    See the containerd security advisory for more information.

sha256sum

root@ruvds-2djjx:~# sha256sum k8e
a69e61d38adbbbb801576d58758de303d2aa18f1f922817e592b6636babac1b4  k8e

Known Issues

  • There is a regression that may cause issues with deleting nodes due to finalizers not being removed. If you observe a node is stuck for some time and is not being deleted you can describe the node to see if any finalizers remain. If there are any finalizers, you can work around this issue by running the following command to remove the finalizers:
# replace <nodename> with the name of the node
kubectl get node -o name <nodename> | xargs -i kubectl patch {} -p '{"metadata":{"finalizers":[]}}' --type=merge