You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »


Summary

Requirements

Reference Patterns

The basis of the requirements came out of looking at how others have solved this challenge. 

Azure IoT Edge

Azure IoT Edge is organized around independently configured modules (aka containers) that are grouped to form a solution. Each module is described independently and then combined into a solution with a deployment manifest. 

module.json
{
  "$schema-version": "0.0.1",
  "description": "RedisEdge",
  "image": {
    "repository": "$CONTAINER_REGISTRY_ADDRESS/redis-edge",
    "tag": {
      "version": "1.0.0",
      "platforms": {
        "amd64": "./Dockerfile.amd64",
        "arm32v7": "./Dockerfile.arm32v7",
        "arm64v8": "./Dockerfile.arm64v8"
    }
  },
  "buildOptions": []
  },
  "language": "javascript"
}
  • No labels