Download v1.15.3 in the v1.15.3 release page.
- Bump Kubernetes to the newest patch version v1.26.15. (#5706, @Shelley-BaoYue)
- Fix edgecore will not restart when the edge node cannot obtain the IP address. (#5717, @WillardHu)
Download v1.15.2 in the v1.15.2 release page.
- Fix default staticPodPath in windows. (#5271, @Shelley-BaoYue)
- Fix featuregates didn't take effect in edged. (#5295, @Shelley-BaoYue)
- Fix device status problem. (#5336, @wbc6080)
- Supports installing edgecore without installing the CNI plugin. (#5367, @luomengY)
Download v1.15.1 in the v1.15.1 release page.
- Bump Kubernetes to the newest patch version 1.26.10. (#5154, @Shelley-BaoYue)
- Fix serviceaccount token not being deleted in edge DB. (#5154, #5199, @Shelley-BaoYue)
- Fix Keadm upgrade if EdgeCore is stopped, the Keadm process will stop. (#5111, @wlq1212)
- Use ReportToCloud to determine whether to push device data from mapper to EdgeCore. (#5116, @luomengY)
- Delete the historical version of CRD in cloudcore/CRD. (#5147, @luomengY)
- Modify parameters for ginkgo v2. (#5155, @Shelley-BaoYue)
- Fix MetaServer panic with set StrictSerializer when handling create and update. (#5183, @Windrow14)
- Support building Windows-amd64 release for EdgeCore and Keadm. (#5187, @wujunyi792)
- Remove unnecessary pid namespace config in copy-resource. (#5191, @Shelley-BaoYue)
- Fix null pointer error when PushMethod is not defined for device properties. (#5204, @luomengY)
- Move pkg/util/grpcclient to pkg/grpcclient; RegisterMapper function should use pkg/grpcclient/config. (#5208, @cl2017, @wbc6080)
- Fix error logs when nodes repeatedly join different node groups. (#5213, @lishaokai1995, @Onion-of-dreamed)
- Resolve that users do not need to define the status module in device yaml.(#5217, @luomengY, @wbc6080)
- Fix device model sync when add or delete devices. (#5221, @cl2017, @wbc6080)
Download v1.15.0 in the v1.15.0 release page.
Edge computing involves various types of devices, including sensors, cameras, and industrial control devices, some of which may run on the Windows OS. In order to support these devices and use cases, supporting Windows Server nodes is necessary for KubeEdge.
In this release, KubeEdge supports the edge node running on Windows Server 2019, and supports Windows container running on edge node, thereby extending KubeEdge to the Windows ecosystem and expanding its use cases and ecosystem.
Refer to the link for more details. (#4914, #4967)
The device API is updated from v1alpha2
to v1beta1
, in v1beta1 API updates include:
- The built-in protocols incude Modbus, Opc-UA and Bluetooth are removed in device instance, and the built-in mappers for these proytocols still exists and will be maintained and updated to latest verison.
- Users must define the protocol config through
CustomizedValue
inProtocolConfig
. - DMI date plane related fields are added, users can config the collection and reporting frequency of device data, and the destination to whcih(such as database, httpserver) data is pushed.
- Controls whether to report device data to cloud.
Refer to the link for more details. (#4983)
Alpha version of DMI date plane is supported, DMI date plane is mainly implemented in mapper, providing interface for pushing data, pulling data, and storing data in database.
To make writing mapper easier, a mapper development framework subproject Mapper-Framework is provided in this release.
Mapper-Framework provides mapper runtime libs and tools for scaffolding and code generation to bootstrap a new mapper project.
Users only need to run a command make generate
to generate a mapper project, then add protocol related code to mapper.
Refer to the link for more details. (#5023)
Kubernetes native Static Pod
is supported on edge node in this release. Users can create pods on edge nodes by place pod manifests in
/etc/kubeedge/manifests
, same as that on the Kubernetes node.
Refer to the link for more details. (#4825)
Kubernetes non-resource kind request /version
is supported from edge node, users now can do /version
requests in edge node from metaserver.
In addition, it can easily support other non-resource kind of requests like /healthz
in edge node with the curent framework.
Many kubernetes plugins like cilium/calico which depend on these non-resource kind of requests, now can run on edge nodes.
Refer to the link for more details. (#4904)
Upgrade the vendered kubernetes version to v1.26.7, users are now able to use the feature of new version on the cloud and on the edge side.
Refer to the link for more details. (#4929)
- In KubeEdge v1.15, new v1beta1 version of device API is incompatible with earlier versions of v1alpha1, users need to update the device API yamls to v1bata1 if you want to use v1.15.
- In KubeEdge v1.15, users need to upgrade the containerd to v1.6.0 or later. Containerd minor version 1.5 and older will not be supported in KubeEdge v1.15. Ref: https://kubernetes.io/blog/2022/11/18/upcoming-changes-in-kubernetes-1-26/#cri-api-removal
- In 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 in v1.15, you also need to first setedged.containerRuntime=remote
and corresponding docker configuration likeRemoteRuntimeEndpoint
andRemoteImageEndpoint
in EdgeCore, then install the cri-dockerd tools as docs below: kubeedge#4843