Download v1.14.5 in the v1.14.5 release page.
- Fix featuregates didn't take effect in edged. (#5296, @Shelley-BaoYue)
- Supports installing edgecore without installing the CNI plugin. (#5366, @luomengY)
Download v1.14.4 in the v1.14.4 release page.
- Fix the bug in local-up mode that causes cni to not launch. (#5125, @ZhengXinwei-F)
- Resolve the deployment order dependency between mapper and device. (#5148, @luomengY)
- Fix MetaServer panic with set StrictSerializer when handling create and update. (#5184, @Windrow14)
- Remove unnecessary pid namespace config in copy-resource. (#5192, @Shelley-BaoYue)
- Fix error logs when nodes repeatedly join different node groups. (#5212, @lishaokai1995, @Onion-of-dreamed)
- Bump Kubernetes to the newest patch version 1.24.17. (#5227, @Shelley-BaoYue)
- Fix serviceaccount token not being deleted in edge DB. (#5227, @Shelley-BaoYue)
Download v1.14.3 in the v1.14.3 release page.
- Fix upgrade time layout and lost time value issue. (#5074, @WillardHu)
- Fix start edgecore failed when using systemd cgroupdriver. (#5076, @Shelley-BaoYue)
- Fix remove pod cache failed. (#5104, @Shelley-BaoYue)
- Fix Keadm process stops abnormally when Keadm upgrade stops edgecore process. (#5110, @wlq1212)
Download v1.14.2 in the v1.14.2 release page.
- Fixed the cloudcore panic caused when using ClusterObjectSyncs resource. (#4918, @ZhengXinwei-F)
- Fixed the kubeedge-version flag does not take effect in init and manifest generate command. (#4937, @WillardHu)
- Fix throws nil runtime error when decode AdmissionReview failed. (#4972, @WillardHu)
- Fix repeatedly reporting history device message to cloud. (#4977, @RyanZhaoXB)
Download v1.14.1 in the v1.14.1 release page.
- Fix MQTT container exited abnormally when edgecore using cri runtime. (#4874, @Shelley-BaoYue)
- Deal with error in delete pod upstream msg. (#4877, @Shelley-BaoYue)
- Update pod db when patch pod successfully. (#4890, @Shelley-BaoYue)
- Use nodeIP initialization in Kubelet, support reporting nodeIP dynamically . (#4895, @Shelley-BaoYue)
- Fix delete statefulset pod failed. (#4872, @Shelley-BaoYue)
- Fix container terminated when edgecore restart. (#4871, @Shelley-BaoYue)
- Fix parsing response message failed in metaclient. (#4898, @Shelley-BaoYue)
- In previous versions, when edge node uses remote runtime (not docker runtime), using
keadm join
and specifying--with-mqtt=true
to install edgecore will cause the Mosquitto container exits abnormally. In this release, this problem has been fixed. Users can specify--with-mqtt=true
to start Mosquitto container when installing edgecore withkeadm join
.
Download v1.14.0 in the v1.14.0 release page.
The Kube-API endpoint for edge applications is implemented through MetaServer in edegcore. However, in previous versions, the authentication and authorization of Kube-API endpoint are performed in the cloud, which prevents authentication and authorization especially in offline scenarios on the edge node.
In this release, the authentication and authorization functionalities are implemented within the MetaServer at edge, which allows for limiting the access permissions of edge applications when accessing Kube-API endpoint at edge.
Refer to the link for more details. (#4802)
The cluster scope resource can guarantee deliver to the edge side reliably since this release, especially include using list-watch global resources, the cluster scope resource can be delivered to the edge side reliably, and the edge applications can work normally.
Refer to the link for more details. (#4758)
Upgrade the vendered kubernetes version to v1.24.14, users are now able to use the feature of new version on the cloud and on the edge side. Note: The dockershim has been removed, which means users can't use docker runtime directly in this release.
Refer to the link for more details. (#4789)
KubeEdge already support kubectl logs/exe
command, kubectl attach
is supported in this release.
kubectl attach
command can attach to a running container at edge node.
Users can execute these commands in the cloud and no need to operate on the edge nodes.
Refer to the link for more details. (#4734)
KubeEdge dashboard provides a graphical user interface (GUI) for managing and monitoring your KubeEdge clusters. It allows users to manage edge applications running in the cluster and troubleshoot them.
Refer to the link for more details. (https://github.com/kubeedge/dashboard)
- On KubeEdge v1.14, EdgeCore has removed the dockeshim support, so users can only use
remote
type runtime, and usescontainerd
runtime by default. If you want to usedocker
runtime, you must first setedged.containerRuntime=remote
and corresponding docker configuration likeRemoteRuntimeEndpoint
andRemoteImageEndpoint
in EdgeCore, then install the cri-dockerd tools as docs below: kubeedge#4843