-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace maestro with edge-resource-manager.
Removed global-node-modules, maestro, pe-nodejs and rallypointwatchdogs. Added edge-resource-manager Replaced maestro with edge-resource-manager in build-env. Removed global-node-modules and pe-nodejs from build-env.
- Loading branch information
1 parent
121f8e1
commit 3208dad
Showing
74 changed files
with
101 additions
and
2,331 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
export CC="${DEB_HOST_GNU_TYPE}"-gcc | ||
export CXX="${DEB_HOST_GNU_TYPE}"-g++ | ||
export PKG_CONFIG="${DEB_HOST_GNU_TYPE}"-pkg-config | ||
|
||
export CONFIG_OPTIONS="--host=${DEB_HOST_GNU_TYPE}" | ||
|
||
export CGO_ENABLED=1 | ||
export GOPATH="`pwd`/go-workspace" | ||
|
||
eval `debian/goflags.guess ${DEB_HOST_ARCH}` | ||
|
||
mkdir -p bin | ||
go build -o bin/edge-resource-manager -buildmode=pie --tags debug edge-resource-manager.go |
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,5 @@ | ||
edge-resource-manager (1.0.0-1) unstable; urgency=medium | ||
|
||
* New component. | ||
|
||
-- Pete Dyer <[email protected]> Mon, 18 Mar 2024 09:44:06 +0000 |
File renamed without changes.
12 changes: 7 additions & 5 deletions
12
maestro/deb/debian/control → edge-resource-manager/deb/debian/control
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 |
---|---|---|
@@ -1,15 +1,17 @@ | ||
Source: maestro | ||
Source: edge-resource-manager | ||
Section: utils | ||
Priority: optional | ||
Maintainer: Vasily Smirnov <[email protected]> | ||
Build-Depends: debhelper (>=9), pe-golang:native, libuv1-dev | ||
Build-Depends: debhelper (>=9), pe-golang:native, | ||
autoconf (>=2.69), automake (>=1:1.15), libtool (>=2.4.6), | ||
libc6, libstdc++6, libunwind-dev, libuv1-dev | ||
Standards-Version: 3.9.6 | ||
Homepage: https://www.pelion.com | ||
Homepage: https://www.izumanetworks.com | ||
|
||
Package: maestro | ||
Package: edge-resource-manager | ||
Architecture: any | ||
Multi-Arch: foreign | ||
Depends: libnss-myhostname, pe-utils, edge-proxy, ${shlibs:Depends} | ||
Depends: ${misc:Depends}, ${shlibs:Depends}, libnss-myhostname, pe-utils, edge-proxy | ||
Recommends: resolvconf | ||
Description: system manager (logging, dhcp, cloud connector) | ||
Maestro is a replacement for a number of typical system utilities and | ||
|
6 changes: 3 additions & 3 deletions
6
maestro/deb/debian/copyright → edge-resource-manager/deb/debian/copyright
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
Empty file.
File renamed without changes.
14 changes: 14 additions & 0 deletions
14
edge-resource-manager/deb/debian/edge-resource-manager.service
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,14 @@ | ||
[Unit] | ||
Description=edge-resource-manager: Adds gateway capability resources. | ||
Requires=edge-proxy.service | ||
After=edge-proxy.service | ||
|
||
[Service] | ||
Restart=always | ||
RestartSec=5s | ||
ExecStart=/usr/bin/edge-resource-manager -config /etc/edge/izuma-base-config.yaml | ||
StandardOutput=journal | ||
StandardError=journal | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
File renamed without changes.
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,3 @@ | ||
debian/izuma-base-config.yaml etc/edge | ||
|
||
bin/edge-resource-manager usr/bin |
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,17 @@ | ||
var_defs: | ||
- key: "TMP_DIR" | ||
value: "/tmp" | ||
edge_capabilities: | ||
edge_core_socketpath: "/tmp/edge.sock" | ||
lwm2m_objectid: 33457 | ||
edge_resources: | ||
- name: "urn:fid:pelion.com:log:1.0.0" | ||
enable: true | ||
config_filepath: "/etc/edge/fluent-bit.conf" | ||
- name: "urn:fid:pelion.com:terminal:1.0.0" | ||
enable: true | ||
config_filepath: "/etc/edge/pe-terminal.conf.json" | ||
- name: "urn:fid:pelion.com:kaas:1.0.0" | ||
enable: true | ||
config_filepath: "/etc/edge/kubeconfig" | ||
config_end: true |
File renamed without changes.
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
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.