Skip to content

Latest commit

 

History

History
36 lines (32 loc) · 2.34 KB

roadmap.md

File metadata and controls

36 lines (32 loc) · 2.34 KB

Roadmap

Implement additional protocol handlers

There are endless sensors, controllers, and MCU class devices on the edge and each type of device has a different discovery protocol. Akri is an interface for helping expose those devices as resources to your Kubernetes cluster on the edge. Before it can add a device as a cluster resource, Akri must first discover the device using the appropriate protocol. Akri currently supports several protocols and was built in a modular way so as to continually support more. The question is, which protocols should Akri prioritize? We are looking for community feedback to make this decision. If there is a protocol that you would like implemented, check our Issues to see if that protocol has been requested, and thumbs up it so we know you, too, would like it implemented. If there is no existing request for your protocol, create a new feature request. Rather than waiting for it to be prioritized, you could implement discovery via that protocol in Agent. See the extensibility document for more details.

Currently supported protocols

  1. ONVIF (to discover IP cameras)
  2. udev (to discover anything in the Linux device file system)
  3. OPC UA (to discover OPC UA Servers)

Protocols we are thinking about adding support for

  • Bluetooth
  • Simple scan for IP/MAC addresses
  • LoRaWAN
  • Zeroconf
  • Looking for community feedback for more!

Akri enhancements

Provide new features and enhancements that build on existing Akri functionality.

New broker deployment strategies

Currently, for every leaf device that is discovered by a node's Akri Agent, a single broker is deployed to that node -- how many nodes get the broker is limited by capacity. This is a fairly specific implementation that does not support all users' scenarios. The New Broker Deployment Strategies proposal discusses some ways the Akri Controller and Agent could be extended to allow for other broker deployment strategies.

Simple and scalable protocol extension

All protocol discovery is currently implemented in each Akri Agent. The drawbacks to this and some potential solutions can be seen in the Simple and Scalable Protocol Extension proposal.