generated from edgexfoundry-holding/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Update Camera Management example on minnesota-dev branch (#213)
* feat: Update Camera Managment exmaple on minnesota-dev branch This is to sync minnesota-dev with latest on main prior to migrating it to V3 Signed-off-by: Leonard Goodell <[email protected]>
- Loading branch information
Lenny Goodell
authored
May 17, 2023
1 parent
b19879a
commit ea20a9d
Showing
13 changed files
with
292 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
...management/edge-video-analytics/evam-mqtt-edgex/devices/edge-video-analytics.devices.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Copyright (C) 2023 Intel Corporation | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
# Pre-define Devices | ||
[[DeviceList]] | ||
Name = "edge-video-analytics" | ||
ProfileName = "edge-video-analytics-profile" | ||
Description = "Device for EVAM (Edge Video Analytics Microservice) pipeline events" | ||
Labels = ["cv", "dlstreamer", "evam", "pipeline-server", "edge-video-analytics"] | ||
[DeviceList.Protocols] | ||
[DeviceList.Protocols.mqtt] | ||
CommandTopic = "command/edge-video-analytics" |
35 changes: 35 additions & 0 deletions
35
...custom/camera-management/edge-video-analytics/evam-mqtt-edgex/docker-compose.override.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# | ||
# Copyright (c) 2023 Intel Corporation | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
version: '3.7' | ||
|
||
services: | ||
device-mqtt: | ||
environment: | ||
DEVICE_DEVICESDIR: /evam-mqtt-edgex/devices | ||
DEVICE_PROFILESDIR: /evam-mqtt-edgex/profiles | ||
MQTTBROKERINFO_INCOMINGTOPIC: "incoming/data/#" | ||
MQTTBROKERINFO_USETOPICLEVELS: "true" | ||
volumes: | ||
# example: - /home/github.com/edgexfoundry/edgex-compose/compose-builder/evam-mqtt-edgex:/evam-mqtt-edgex | ||
- <add-full-path-of-your-edgex-compose-builder-here-example-above>/evam-mqtt-edgex:/evam-mqtt-edgex | ||
|
||
mqtt-broker: | ||
volumes: | ||
# example: - /home/github.com/edgexfoundry/edgex-compose/compose-builder/evam-mqtt-edgex:/evam-mqtt-edgex | ||
- <add-full-path-of-your-edgex-compose-builder-here>/evam-mqtt-edgex/mosquitto.conf:/mosquitto-no-auth.conf:ro | ||
ports: | ||
- "59001:9001" |
18 changes: 18 additions & 0 deletions
18
...ion-services/custom/camera-management/edge-video-analytics/evam-mqtt-edgex/mosquitto.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# | ||
# Copyright (C) 2022-2023 Intel Corporation | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
allow_anonymous true | ||
listener 1883 | ||
|
||
log_type error | ||
log_type warning | ||
log_type notice | ||
log_type information | ||
log_type subscribe | ||
log_type unsubscribe | ||
log_type websockets | ||
|
||
listener 9001 | ||
protocol websockets |
Oops, something went wrong.