kubeedge

Kubernetes Native Edge Computing Framework (project under CNCF)

APACHE-2.0 License

Stars
6.5K
Committers
341

Bot releases are hidden (Show)

kubeedge - KubeEdge v1.16.2 release

Published by Shelley-BaoYue 6 months ago

See CHANGELOG-1.16.md for details.

kubeedge - KubeEdge v1.13.0 release

Published by kevin-wangzefeng almost 2 years ago

See CHANGELOG-1.13.md for details.

kubeedge - KubeEdge v1.12.1 release

Published by vincentgoat almost 2 years ago

See CHANGELOG-1.12.md for details.

kubeedge - KubeEdge v1.9.4 release

Published by kevin-wangzefeng over 2 years ago

See CHANGELOG-1.9.md for details.

kubeedge - KubeEdge v1.10.2 release

Published by kevin-wangzefeng over 2 years ago

See CHANGELOG-1.10.md for details.

kubeedge - KubeEdge v1.11.1 release

Published by kevin-wangzefeng over 2 years ago

See CHANGELOG-1.11.md for details.

kubeedge - KubeEdge v1.7.0 release

Published by fisherxu over 3 years ago

See CHANGELOG-1.7.md for details.

kubeedge - KubeEdge v1.4.0 release

Published by kevin-wangzefeng about 4 years ago

See CHANGELOG-1.4.md for details.

kubeedge - KubeEdge v1.4.0-beta.0 release

Published by fisherxu about 4 years ago

Notable Changes

Bug fixs

kubeedge - KubeEdge v1.3.1 release

Published by fisherxu over 4 years ago

See CHANGELOG-1.3.md for details.

kubeedge - KubeEdge v1.3.0 release

Published by kevin-wangzefeng over 4 years ago

See CHANGELOG-1.3.md for details.

kubeedge - KubeEdge v1.3.0-beta.0 release

Published by kevin-wangzefeng over 4 years ago

Notable Changes

Bug fixes

kubeedge - KubeEdge v1.2.1 release

Published by kevin-wangzefeng over 4 years ago

See CHANGELOG-1.2.md for details.

kubeedge - KubeEdge v1.1.0 release

Published by fisherxu about 5 years ago

See CHANGELOG-1.1.md for details.

kubeedge - KubeEdge v1.1.0-beta.0 release

Published by fisherxu about 5 years ago

Notable changes

kubeedge - KubeEdge v1.0.0 release

Published by sids-b over 5 years ago

v1.0 What's New

Edge Mesh

This feature aims to support service mesh capabilities on the edge to support microservice communication cross cloud and edge. In v1.0.0 release, pod-to-pod communication on the same edge node or across
edge nodes in the same subnet is supported.

CRI support

This feature enables edged to communicate with a CRI-compliant runtime to manage containers running on resource constrained edge nodes. Support for containerd is tested.

Quic protocol support

In order to enhance cloud and edge communication efficiency, communication between the edge and the cloud is now also supported via QUIC, a UDP-based protocol. CloudHub supports both Websocket and QUIC protocol access at the same time. The edgehub can choose one of the protocols to access the cloudhub.

Modbus Mapper

Modbus Mapper is an application that is used to connect and control devices that use Modbus(RTU/TCP) as a communication protocol. The user is required to provide the mapper with the information required to control their device through the dpl configuration file. These can be changed at runtime by updating configmap.

Edge Site

Edge Site enables to run a standalone Kubernetes cluster at the edge along with KubeEdge to get full control and improve the offline scheduling capability. A Kubernetes cluster is deployed at edge location including the management control plane. For the management control plane to manage a reasonable scale of edge worker nodes, the host master node needs to have sufficient resources.

Known Issues

  • Reliable message delivery is missing between cloud and edge.

  • Installer currently doesn't support installation of containerd, cni-plugins.

  • Port mapping is not supported in CRI

Other notable changes

kubeedge - KubeEdge v1.0.0-beta.0 release

Published by sids-b over 5 years ago

Features added

Edge Mesh

This feature aims to support service mesh capabilities on the edge to support microservice communication cross cloud and edge. In v1.0 release, pod-to-pod communication on the same edge node or across
edge nodes in the same subnet is possible.

CRI support

This feature enables edged to communicate with a CRI-compliant runtime to manage containers running on resource constrained edge nodes. Support for containerd is tested.

Quic protocol support

In order to enhance cloud and edge communication efficiency, communication between the edge and the cloud is now also supported via QUIC, a UDP-based protocol. CloudHub supports both websocket and QUIC protocol access at the same time. The edgehub can choose one of the protocols to access the cloudhub.

Edge Site

Edge Site enables to run a standalone Kubernetes cluster at the edge along with KubeEdge to get full control and improve the offline scheduling capability.

Modbus Mapper

Modbus Mapper is an application that is used to connect and control devices that use Modbus(RTU/TCP) as a communication protocol.

kubeedge - KubeEdge v0.3.0 release

Published by sids-b over 5 years ago

Changelog since v0.3.0-beta.0

Other Notable Changes

kubeedge - KubeEdge v0.3.0-beta.0 release

Published by rohitsardesai83 over 5 years ago

Features added

  1. Device Management using CRD’s : This feature mainly provides api’s for managing devices from cloud and synchronize the device updates between cloud and edge. DeviceController is the module in cloud which is responsible for watching on devices and devicemodels and syncing the data to edge. DeviceController is also responsible for receiving the device-twin updates sent from edge and making the changes in cloud(apiserver). DeviceController also creates a configmap for each node and adds the deviceInstances, protocols, properties and propertyVisitors in it. This configmap can be consumed by any application like mapper and used to configure/control devices.

  2. Bluetooth Mapper : Bluetooth Mapper is an application that is used to connect and control devices that use bluetooth as a communication protocol. It consumes the configmap generated by device-controller and reuires a configuration file for information not present in configmap. Configurations can be changed at runtime by providing the input through the MQTT broker. It can run schedule based actions and converts data received from devices into edge_core expected format.

  3. Performance Test Framework : Benchmarking framework to measure the performance against the following Service Level Objectives:

  • Latency: time cost from the moment when the server gets the request to last byte of response sent to the users.

  • Throughput: measure how many requests can be served within given time.

  • Scalability: potential scaling capacity (including number of nodes, pods, devices etc. at the edge) under different load conditions.

  • CPU Usage: measure the cpu usage of KubeEdge under different load conditions.

  • Memory Usage: measure the memory usage of KubeEdge under different load conditions.

  1. KubeEdge Installer : Support for basic commands to bootstrap and teardown both KubeEdge cloud and edge components.
    Supported Commands :
    • kubeedge init : bootstrap cloud prerequisites and cloud components if not already present.
    • kubeedge join : add edge node in cloud api-server, bootstrap edge prerequisites and edge components if not already present.
    • kubeedge reset : for cloud node teardown cloud components and prerequites. For edge node teardown edge components and prerequisites.

Known issues

  • Api Validation for device controller is missing.

  • UT/e2e coverage should be improved for cloud part.

  • Partitioning of device configmap.

  • Running edged and k8s master on same VM kills k8s master pods.

Features Work In Progress (Future release)

  • CRI support in edged.

  • EdgeMesh for edge to edge communication.

  • Evaluation and enhancement of cloud-edge websocket connection using QUIC.

  • EdgeSite support for KubeEdge.

kubeedge - KubeEdge v0.2.1 release

Published by rohitsardesai83 over 5 years ago

Bug fixes

https://github.com/kubeedge/kubeedge/pull/354
https://github.com/kubeedge/kubeedge/pull/328

Known issues

  1. service bus at edge cannot be used until router support is added in the cloud.