From 54b2d049bfc1afbaa95ab228d87485b8be4ffc43 Mon Sep 17 00:00:00 2001 From: Jean-Benoit Paux <9682558+jbpaux@users.noreply.github.com> Date: Thu, 3 Nov 2022 18:42:25 +0100 Subject: [PATCH 1/4] Add nodeSelectors for Akri Agent Signed-off-by: Jean-Benoit Paux <9682558+jbpaux@users.noreply.github.com> --- deployment/helm/templates/agent.yaml | 7 ++++++- deployment/helm/values.yaml | 3 +++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/deployment/helm/templates/agent.yaml b/deployment/helm/templates/agent.yaml index c65f519a9..162eb8d68 100644 --- a/deployment/helm/templates/agent.yaml +++ b/deployment/helm/templates/agent.yaml @@ -17,9 +17,14 @@ spec: hostNetwork: true dnsPolicy: ClusterFirstWithHostNet {{- end }} - {{- if .Values.agent.linuxOnly }} + {{- if or .Values.agent.linuxOnly .Values.agent.nodeSelectors }} nodeSelector: + {{- if .Values.agent.linuxOnly }} "kubernetes.io/os": linux + {{- end }} + {{- if .Values.agent.nodeSelectors }} + {{- toYaml .Values.agent.nodeSelectors | nindent 8 }} + {{- end }} {{- end }} {{- if .Values.rbac.enabled }} serviceAccountName: 'akri-agent-sa' diff --git a/deployment/helm/values.yaml b/deployment/helm/values.yaml index 54d179232..5fcc7d438 100644 --- a/deployment/helm/values.yaml +++ b/deployment/helm/values.yaml @@ -109,6 +109,9 @@ agent: allowDebugEcho: false # linuxOnly dictates whether the Akri Agent will only run on a linux node linuxOnly: true + # nodeSelectors is the array of nodeSelectors used to target nodes for the Akri Agent to run on + # This can be set from the helm command line using `--set agent.nodeSelectors.label="value"` + nodeSelectors: {} resources: # memoryRequest defines the minimum amount of RAM that must be available to this Pod # for it to be scheduled by the Kubernetes Scheduler From 8d40ea3f9cd094031d1eb3bca9ee0b79f042d74b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 3 Nov 2022 17:47:45 +0000 Subject: [PATCH 2/4] Update patch version Signed-off-by: github-actions[bot] --- Cargo.lock | 28 +++++++++---------- agent/Cargo.toml | 2 +- controller/Cargo.toml | 2 +- deployment/helm/Chart.yaml | 4 +-- .../debug-echo-discovery-handler/Cargo.toml | 2 +- .../onvif-discovery-handler/Cargo.toml | 2 +- .../opcua-discovery-handler/Cargo.toml | 2 +- .../udev-discovery-handler/Cargo.toml | 2 +- discovery-handlers/debug-echo/Cargo.toml | 2 +- discovery-handlers/onvif/Cargo.toml | 2 +- discovery-handlers/opcua/Cargo.toml | 2 +- discovery-handlers/udev/Cargo.toml | 2 +- discovery-utils/Cargo.toml | 2 +- samples/brokers/udev-video-broker/Cargo.toml | 2 +- shared/Cargo.toml | 2 +- version.txt | 2 +- webhooks/validating/configuration/Cargo.toml | 2 +- 17 files changed, 31 insertions(+), 31 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 15a9632e3..0ed85697e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -333,7 +333,7 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" [[package]] name = "agent" -version = "0.8.24" +version = "0.8.25" dependencies = [ "akri-debug-echo", "akri-discovery-utils", @@ -401,7 +401,7 @@ dependencies = [ [[package]] name = "akri-debug-echo" -version = "0.8.24" +version = "0.8.25" dependencies = [ "akri-discovery-utils", "akri-shared", @@ -421,7 +421,7 @@ dependencies = [ [[package]] name = "akri-discovery-utils" -version = "0.8.24" +version = "0.8.25" dependencies = [ "akri-shared", "anyhow", @@ -443,7 +443,7 @@ dependencies = [ [[package]] name = "akri-onvif" -version = "0.8.24" +version = "0.8.25" dependencies = [ "akri-discovery-utils", "akri-shared", @@ -471,7 +471,7 @@ dependencies = [ [[package]] name = "akri-opcua" -version = "0.8.24" +version = "0.8.25" dependencies = [ "akri-discovery-utils", "akri-shared", @@ -495,7 +495,7 @@ dependencies = [ [[package]] name = "akri-shared" -version = "0.8.24" +version = "0.8.25" dependencies = [ "anyhow", "async-trait", @@ -524,7 +524,7 @@ dependencies = [ [[package]] name = "akri-udev" -version = "0.8.24" +version = "0.8.25" dependencies = [ "akri-discovery-utils", "anyhow", @@ -992,7 +992,7 @@ checksum = "fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935" [[package]] name = "controller" -version = "0.8.24" +version = "0.8.25" dependencies = [ "akri-shared", "anyhow", @@ -1202,7 +1202,7 @@ dependencies = [ [[package]] name = "debug-echo-discovery-handler" -version = "0.8.24" +version = "0.8.25" dependencies = [ "akri-debug-echo", "akri-discovery-utils", @@ -2433,7 +2433,7 @@ checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1" [[package]] name = "onvif-discovery-handler" -version = "0.8.24" +version = "0.8.25" dependencies = [ "akri-discovery-utils", "akri-onvif", @@ -2483,7 +2483,7 @@ dependencies = [ [[package]] name = "opcua-discovery-handler" -version = "0.8.24" +version = "0.8.25" dependencies = [ "akri-discovery-utils", "akri-opcua", @@ -4144,7 +4144,7 @@ dependencies = [ [[package]] name = "udev-discovery-handler" -version = "0.8.24" +version = "0.8.25" dependencies = [ "akri-discovery-utils", "akri-udev", @@ -4155,7 +4155,7 @@ dependencies = [ [[package]] name = "udev-video-broker" -version = "0.8.24" +version = "0.8.25" dependencies = [ "akri-shared", "env_logger", @@ -4425,7 +4425,7 @@ dependencies = [ [[package]] name = "webhook-configuration" -version = "0.8.24" +version = "0.8.25" dependencies = [ "actix", "actix-rt 2.7.0", diff --git a/agent/Cargo.toml b/agent/Cargo.toml index 0b1fc53ce..25417e04d 100644 --- a/agent/Cargo.toml +++ b/agent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent" -version = "0.8.24" +version = "0.8.25" authors = ["Kate Goldenring ", ""] edition = "2018" rust-version = "1.63.0" diff --git a/controller/Cargo.toml b/controller/Cargo.toml index ecfc602be..a1102f919 100644 --- a/controller/Cargo.toml +++ b/controller/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "controller" -version = "0.8.24" +version = "0.8.25" authors = ["", ""] edition = "2018" rust-version = "1.63.0" diff --git a/deployment/helm/Chart.yaml b/deployment/helm/Chart.yaml index 70fd3ea6b..77bfa47bb 100644 --- a/deployment/helm/Chart.yaml +++ b/deployment/helm/Chart.yaml @@ -15,9 +15,9 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.8.24 +version: 0.8.25 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. -appVersion: 0.8.24 +appVersion: 0.8.25 diff --git a/discovery-handler-modules/debug-echo-discovery-handler/Cargo.toml b/discovery-handler-modules/debug-echo-discovery-handler/Cargo.toml index f76bfc942..49bca17be 100644 --- a/discovery-handler-modules/debug-echo-discovery-handler/Cargo.toml +++ b/discovery-handler-modules/debug-echo-discovery-handler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "debug-echo-discovery-handler" -version = "0.8.24" +version = "0.8.25" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/discovery-handler-modules/onvif-discovery-handler/Cargo.toml b/discovery-handler-modules/onvif-discovery-handler/Cargo.toml index 91fff48c4..48f76488a 100644 --- a/discovery-handler-modules/onvif-discovery-handler/Cargo.toml +++ b/discovery-handler-modules/onvif-discovery-handler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "onvif-discovery-handler" -version = "0.8.24" +version = "0.8.25" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/discovery-handler-modules/opcua-discovery-handler/Cargo.toml b/discovery-handler-modules/opcua-discovery-handler/Cargo.toml index 65a014a4a..5d3adf035 100644 --- a/discovery-handler-modules/opcua-discovery-handler/Cargo.toml +++ b/discovery-handler-modules/opcua-discovery-handler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "opcua-discovery-handler" -version = "0.8.24" +version = "0.8.25" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/discovery-handler-modules/udev-discovery-handler/Cargo.toml b/discovery-handler-modules/udev-discovery-handler/Cargo.toml index eccb19d1b..029d38bf3 100644 --- a/discovery-handler-modules/udev-discovery-handler/Cargo.toml +++ b/discovery-handler-modules/udev-discovery-handler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "udev-discovery-handler" -version = "0.8.24" +version = "0.8.25" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/discovery-handlers/debug-echo/Cargo.toml b/discovery-handlers/debug-echo/Cargo.toml index 390d6fef3..2a16e60b6 100644 --- a/discovery-handlers/debug-echo/Cargo.toml +++ b/discovery-handlers/debug-echo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "akri-debug-echo" -version = "0.8.24" +version = "0.8.25" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/discovery-handlers/onvif/Cargo.toml b/discovery-handlers/onvif/Cargo.toml index 2d2506b85..1c464211f 100644 --- a/discovery-handlers/onvif/Cargo.toml +++ b/discovery-handlers/onvif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "akri-onvif" -version = "0.8.24" +version = "0.8.25" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/discovery-handlers/opcua/Cargo.toml b/discovery-handlers/opcua/Cargo.toml index f83726f9f..f2eaae185 100644 --- a/discovery-handlers/opcua/Cargo.toml +++ b/discovery-handlers/opcua/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "akri-opcua" -version = "0.8.24" +version = "0.8.25" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/discovery-handlers/udev/Cargo.toml b/discovery-handlers/udev/Cargo.toml index 758eb2fda..e1696fbf2 100644 --- a/discovery-handlers/udev/Cargo.toml +++ b/discovery-handlers/udev/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "akri-udev" -version = "0.8.24" +version = "0.8.25" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/discovery-utils/Cargo.toml b/discovery-utils/Cargo.toml index 768a61b5e..3a0bb8896 100644 --- a/discovery-utils/Cargo.toml +++ b/discovery-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "akri-discovery-utils" -version = "0.8.24" +version = "0.8.25" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/samples/brokers/udev-video-broker/Cargo.toml b/samples/brokers/udev-video-broker/Cargo.toml index 35bc72888..8ab0faf54 100644 --- a/samples/brokers/udev-video-broker/Cargo.toml +++ b/samples/brokers/udev-video-broker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "udev-video-broker" -version = "0.8.24" +version = "0.8.25" authors = ["Kate Goldenring ", ""] edition = "2018" rust-version = "1.63.0" diff --git a/shared/Cargo.toml b/shared/Cargo.toml index 13da737da..a2a049933 100644 --- a/shared/Cargo.toml +++ b/shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "akri-shared" -version = "0.8.24" +version = "0.8.25" authors = [""] edition = "2018" rust-version = "1.63.0" diff --git a/version.txt b/version.txt index 0a0882457..403907483 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.8.24 +0.8.25 diff --git a/webhooks/validating/configuration/Cargo.toml b/webhooks/validating/configuration/Cargo.toml index 8c9fedb32..a9185f1a1 100644 --- a/webhooks/validating/configuration/Cargo.toml +++ b/webhooks/validating/configuration/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "webhook-configuration" -version = "0.8.24" +version = "0.8.25" authors = ["DazWilkin "] edition = "2018" rust-version = "1.63.0" From 8b0ed8885c29849a541d7a7e391f1b84476f703b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 2 Dec 2022 13:38:37 +0000 Subject: [PATCH 3/4] Update patch version Signed-off-by: github-actions[bot] --- Cargo.lock | 28 +++++++++---------- agent/Cargo.toml | 2 +- controller/Cargo.toml | 2 +- deployment/helm/Chart.yaml | 4 +-- .../debug-echo-discovery-handler/Cargo.toml | 2 +- .../onvif-discovery-handler/Cargo.toml | 2 +- .../opcua-discovery-handler/Cargo.toml | 2 +- .../udev-discovery-handler/Cargo.toml | 2 +- discovery-handlers/debug-echo/Cargo.toml | 2 +- discovery-handlers/onvif/Cargo.toml | 2 +- discovery-handlers/opcua/Cargo.toml | 2 +- discovery-handlers/udev/Cargo.toml | 2 +- discovery-utils/Cargo.toml | 2 +- samples/brokers/udev-video-broker/Cargo.toml | 2 +- shared/Cargo.toml | 2 +- version.txt | 2 +- webhooks/validating/configuration/Cargo.toml | 2 +- 17 files changed, 31 insertions(+), 31 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0ed85697e..77bf7ac7c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -333,7 +333,7 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" [[package]] name = "agent" -version = "0.8.25" +version = "0.8.26" dependencies = [ "akri-debug-echo", "akri-discovery-utils", @@ -401,7 +401,7 @@ dependencies = [ [[package]] name = "akri-debug-echo" -version = "0.8.25" +version = "0.8.26" dependencies = [ "akri-discovery-utils", "akri-shared", @@ -421,7 +421,7 @@ dependencies = [ [[package]] name = "akri-discovery-utils" -version = "0.8.25" +version = "0.8.26" dependencies = [ "akri-shared", "anyhow", @@ -443,7 +443,7 @@ dependencies = [ [[package]] name = "akri-onvif" -version = "0.8.25" +version = "0.8.26" dependencies = [ "akri-discovery-utils", "akri-shared", @@ -471,7 +471,7 @@ dependencies = [ [[package]] name = "akri-opcua" -version = "0.8.25" +version = "0.8.26" dependencies = [ "akri-discovery-utils", "akri-shared", @@ -495,7 +495,7 @@ dependencies = [ [[package]] name = "akri-shared" -version = "0.8.25" +version = "0.8.26" dependencies = [ "anyhow", "async-trait", @@ -524,7 +524,7 @@ dependencies = [ [[package]] name = "akri-udev" -version = "0.8.25" +version = "0.8.26" dependencies = [ "akri-discovery-utils", "anyhow", @@ -992,7 +992,7 @@ checksum = "fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935" [[package]] name = "controller" -version = "0.8.25" +version = "0.8.26" dependencies = [ "akri-shared", "anyhow", @@ -1202,7 +1202,7 @@ dependencies = [ [[package]] name = "debug-echo-discovery-handler" -version = "0.8.25" +version = "0.8.26" dependencies = [ "akri-debug-echo", "akri-discovery-utils", @@ -2433,7 +2433,7 @@ checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1" [[package]] name = "onvif-discovery-handler" -version = "0.8.25" +version = "0.8.26" dependencies = [ "akri-discovery-utils", "akri-onvif", @@ -2483,7 +2483,7 @@ dependencies = [ [[package]] name = "opcua-discovery-handler" -version = "0.8.25" +version = "0.8.26" dependencies = [ "akri-discovery-utils", "akri-opcua", @@ -4144,7 +4144,7 @@ dependencies = [ [[package]] name = "udev-discovery-handler" -version = "0.8.25" +version = "0.8.26" dependencies = [ "akri-discovery-utils", "akri-udev", @@ -4155,7 +4155,7 @@ dependencies = [ [[package]] name = "udev-video-broker" -version = "0.8.25" +version = "0.8.26" dependencies = [ "akri-shared", "env_logger", @@ -4425,7 +4425,7 @@ dependencies = [ [[package]] name = "webhook-configuration" -version = "0.8.25" +version = "0.8.26" dependencies = [ "actix", "actix-rt 2.7.0", diff --git a/agent/Cargo.toml b/agent/Cargo.toml index 25417e04d..e3ee467b4 100644 --- a/agent/Cargo.toml +++ b/agent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent" -version = "0.8.25" +version = "0.8.26" authors = ["Kate Goldenring ", ""] edition = "2018" rust-version = "1.63.0" diff --git a/controller/Cargo.toml b/controller/Cargo.toml index a1102f919..231200a41 100644 --- a/controller/Cargo.toml +++ b/controller/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "controller" -version = "0.8.25" +version = "0.8.26" authors = ["", ""] edition = "2018" rust-version = "1.63.0" diff --git a/deployment/helm/Chart.yaml b/deployment/helm/Chart.yaml index 77bfa47bb..e9c698960 100644 --- a/deployment/helm/Chart.yaml +++ b/deployment/helm/Chart.yaml @@ -15,9 +15,9 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.8.25 +version: 0.8.26 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. -appVersion: 0.8.25 +appVersion: 0.8.26 diff --git a/discovery-handler-modules/debug-echo-discovery-handler/Cargo.toml b/discovery-handler-modules/debug-echo-discovery-handler/Cargo.toml index 49bca17be..bdac0795f 100644 --- a/discovery-handler-modules/debug-echo-discovery-handler/Cargo.toml +++ b/discovery-handler-modules/debug-echo-discovery-handler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "debug-echo-discovery-handler" -version = "0.8.25" +version = "0.8.26" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/discovery-handler-modules/onvif-discovery-handler/Cargo.toml b/discovery-handler-modules/onvif-discovery-handler/Cargo.toml index 48f76488a..4ff04f7e0 100644 --- a/discovery-handler-modules/onvif-discovery-handler/Cargo.toml +++ b/discovery-handler-modules/onvif-discovery-handler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "onvif-discovery-handler" -version = "0.8.25" +version = "0.8.26" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/discovery-handler-modules/opcua-discovery-handler/Cargo.toml b/discovery-handler-modules/opcua-discovery-handler/Cargo.toml index 5d3adf035..979c4688d 100644 --- a/discovery-handler-modules/opcua-discovery-handler/Cargo.toml +++ b/discovery-handler-modules/opcua-discovery-handler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "opcua-discovery-handler" -version = "0.8.25" +version = "0.8.26" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/discovery-handler-modules/udev-discovery-handler/Cargo.toml b/discovery-handler-modules/udev-discovery-handler/Cargo.toml index 029d38bf3..1874cc848 100644 --- a/discovery-handler-modules/udev-discovery-handler/Cargo.toml +++ b/discovery-handler-modules/udev-discovery-handler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "udev-discovery-handler" -version = "0.8.25" +version = "0.8.26" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/discovery-handlers/debug-echo/Cargo.toml b/discovery-handlers/debug-echo/Cargo.toml index 2a16e60b6..681f34308 100644 --- a/discovery-handlers/debug-echo/Cargo.toml +++ b/discovery-handlers/debug-echo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "akri-debug-echo" -version = "0.8.25" +version = "0.8.26" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/discovery-handlers/onvif/Cargo.toml b/discovery-handlers/onvif/Cargo.toml index 1c464211f..aff48c2cd 100644 --- a/discovery-handlers/onvif/Cargo.toml +++ b/discovery-handlers/onvif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "akri-onvif" -version = "0.8.25" +version = "0.8.26" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/discovery-handlers/opcua/Cargo.toml b/discovery-handlers/opcua/Cargo.toml index f2eaae185..64ab33ff9 100644 --- a/discovery-handlers/opcua/Cargo.toml +++ b/discovery-handlers/opcua/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "akri-opcua" -version = "0.8.25" +version = "0.8.26" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/discovery-handlers/udev/Cargo.toml b/discovery-handlers/udev/Cargo.toml index e1696fbf2..5ea72fc4b 100644 --- a/discovery-handlers/udev/Cargo.toml +++ b/discovery-handlers/udev/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "akri-udev" -version = "0.8.25" +version = "0.8.26" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/discovery-utils/Cargo.toml b/discovery-utils/Cargo.toml index 3a0bb8896..4c848503b 100644 --- a/discovery-utils/Cargo.toml +++ b/discovery-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "akri-discovery-utils" -version = "0.8.25" +version = "0.8.26" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/samples/brokers/udev-video-broker/Cargo.toml b/samples/brokers/udev-video-broker/Cargo.toml index 8ab0faf54..465dea2d5 100644 --- a/samples/brokers/udev-video-broker/Cargo.toml +++ b/samples/brokers/udev-video-broker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "udev-video-broker" -version = "0.8.25" +version = "0.8.26" authors = ["Kate Goldenring ", ""] edition = "2018" rust-version = "1.63.0" diff --git a/shared/Cargo.toml b/shared/Cargo.toml index a2a049933..db1de80e9 100644 --- a/shared/Cargo.toml +++ b/shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "akri-shared" -version = "0.8.25" +version = "0.8.26" authors = [""] edition = "2018" rust-version = "1.63.0" diff --git a/version.txt b/version.txt index 403907483..85ccf6fa2 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.8.25 +0.8.26 diff --git a/webhooks/validating/configuration/Cargo.toml b/webhooks/validating/configuration/Cargo.toml index a9185f1a1..124b55718 100644 --- a/webhooks/validating/configuration/Cargo.toml +++ b/webhooks/validating/configuration/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "webhook-configuration" -version = "0.8.25" +version = "0.8.26" authors = ["DazWilkin "] edition = "2018" rust-version = "1.63.0" From 8b4a5a221e4cdc9e8acca4ef0ab4dad4ac8968b8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 2 Dec 2022 13:39:47 +0000 Subject: [PATCH 4/4] Update patch version Signed-off-by: github-actions[bot] --- Cargo.lock | 28 +++++++++---------- agent/Cargo.toml | 2 +- controller/Cargo.toml | 2 +- deployment/helm/Chart.yaml | 4 +-- .../debug-echo-discovery-handler/Cargo.toml | 2 +- .../onvif-discovery-handler/Cargo.toml | 2 +- .../opcua-discovery-handler/Cargo.toml | 2 +- .../udev-discovery-handler/Cargo.toml | 2 +- discovery-handlers/debug-echo/Cargo.toml | 2 +- discovery-handlers/onvif/Cargo.toml | 2 +- discovery-handlers/opcua/Cargo.toml | 2 +- discovery-handlers/udev/Cargo.toml | 2 +- discovery-utils/Cargo.toml | 2 +- samples/brokers/udev-video-broker/Cargo.toml | 2 +- shared/Cargo.toml | 2 +- version.txt | 2 +- webhooks/validating/configuration/Cargo.toml | 2 +- 17 files changed, 31 insertions(+), 31 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 77bf7ac7c..a018bdeb2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -333,7 +333,7 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" [[package]] name = "agent" -version = "0.8.26" +version = "0.8.27" dependencies = [ "akri-debug-echo", "akri-discovery-utils", @@ -401,7 +401,7 @@ dependencies = [ [[package]] name = "akri-debug-echo" -version = "0.8.26" +version = "0.8.27" dependencies = [ "akri-discovery-utils", "akri-shared", @@ -421,7 +421,7 @@ dependencies = [ [[package]] name = "akri-discovery-utils" -version = "0.8.26" +version = "0.8.27" dependencies = [ "akri-shared", "anyhow", @@ -443,7 +443,7 @@ dependencies = [ [[package]] name = "akri-onvif" -version = "0.8.26" +version = "0.8.27" dependencies = [ "akri-discovery-utils", "akri-shared", @@ -471,7 +471,7 @@ dependencies = [ [[package]] name = "akri-opcua" -version = "0.8.26" +version = "0.8.27" dependencies = [ "akri-discovery-utils", "akri-shared", @@ -495,7 +495,7 @@ dependencies = [ [[package]] name = "akri-shared" -version = "0.8.26" +version = "0.8.27" dependencies = [ "anyhow", "async-trait", @@ -524,7 +524,7 @@ dependencies = [ [[package]] name = "akri-udev" -version = "0.8.26" +version = "0.8.27" dependencies = [ "akri-discovery-utils", "anyhow", @@ -992,7 +992,7 @@ checksum = "fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935" [[package]] name = "controller" -version = "0.8.26" +version = "0.8.27" dependencies = [ "akri-shared", "anyhow", @@ -1202,7 +1202,7 @@ dependencies = [ [[package]] name = "debug-echo-discovery-handler" -version = "0.8.26" +version = "0.8.27" dependencies = [ "akri-debug-echo", "akri-discovery-utils", @@ -2433,7 +2433,7 @@ checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1" [[package]] name = "onvif-discovery-handler" -version = "0.8.26" +version = "0.8.27" dependencies = [ "akri-discovery-utils", "akri-onvif", @@ -2483,7 +2483,7 @@ dependencies = [ [[package]] name = "opcua-discovery-handler" -version = "0.8.26" +version = "0.8.27" dependencies = [ "akri-discovery-utils", "akri-opcua", @@ -4144,7 +4144,7 @@ dependencies = [ [[package]] name = "udev-discovery-handler" -version = "0.8.26" +version = "0.8.27" dependencies = [ "akri-discovery-utils", "akri-udev", @@ -4155,7 +4155,7 @@ dependencies = [ [[package]] name = "udev-video-broker" -version = "0.8.26" +version = "0.8.27" dependencies = [ "akri-shared", "env_logger", @@ -4425,7 +4425,7 @@ dependencies = [ [[package]] name = "webhook-configuration" -version = "0.8.26" +version = "0.8.27" dependencies = [ "actix", "actix-rt 2.7.0", diff --git a/agent/Cargo.toml b/agent/Cargo.toml index e3ee467b4..cc25fac8a 100644 --- a/agent/Cargo.toml +++ b/agent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "agent" -version = "0.8.26" +version = "0.8.27" authors = ["Kate Goldenring ", ""] edition = "2018" rust-version = "1.63.0" diff --git a/controller/Cargo.toml b/controller/Cargo.toml index 231200a41..e73e23bc3 100644 --- a/controller/Cargo.toml +++ b/controller/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "controller" -version = "0.8.26" +version = "0.8.27" authors = ["", ""] edition = "2018" rust-version = "1.63.0" diff --git a/deployment/helm/Chart.yaml b/deployment/helm/Chart.yaml index e9c698960..a6a9d6208 100644 --- a/deployment/helm/Chart.yaml +++ b/deployment/helm/Chart.yaml @@ -15,9 +15,9 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.8.26 +version: 0.8.27 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. -appVersion: 0.8.26 +appVersion: 0.8.27 diff --git a/discovery-handler-modules/debug-echo-discovery-handler/Cargo.toml b/discovery-handler-modules/debug-echo-discovery-handler/Cargo.toml index bdac0795f..f5d6a919a 100644 --- a/discovery-handler-modules/debug-echo-discovery-handler/Cargo.toml +++ b/discovery-handler-modules/debug-echo-discovery-handler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "debug-echo-discovery-handler" -version = "0.8.26" +version = "0.8.27" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/discovery-handler-modules/onvif-discovery-handler/Cargo.toml b/discovery-handler-modules/onvif-discovery-handler/Cargo.toml index 4ff04f7e0..eec635744 100644 --- a/discovery-handler-modules/onvif-discovery-handler/Cargo.toml +++ b/discovery-handler-modules/onvif-discovery-handler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "onvif-discovery-handler" -version = "0.8.26" +version = "0.8.27" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/discovery-handler-modules/opcua-discovery-handler/Cargo.toml b/discovery-handler-modules/opcua-discovery-handler/Cargo.toml index 979c4688d..2e649b8e2 100644 --- a/discovery-handler-modules/opcua-discovery-handler/Cargo.toml +++ b/discovery-handler-modules/opcua-discovery-handler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "opcua-discovery-handler" -version = "0.8.26" +version = "0.8.27" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/discovery-handler-modules/udev-discovery-handler/Cargo.toml b/discovery-handler-modules/udev-discovery-handler/Cargo.toml index 1874cc848..433b1f667 100644 --- a/discovery-handler-modules/udev-discovery-handler/Cargo.toml +++ b/discovery-handler-modules/udev-discovery-handler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "udev-discovery-handler" -version = "0.8.26" +version = "0.8.27" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/discovery-handlers/debug-echo/Cargo.toml b/discovery-handlers/debug-echo/Cargo.toml index 681f34308..4d0dc9708 100644 --- a/discovery-handlers/debug-echo/Cargo.toml +++ b/discovery-handlers/debug-echo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "akri-debug-echo" -version = "0.8.26" +version = "0.8.27" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/discovery-handlers/onvif/Cargo.toml b/discovery-handlers/onvif/Cargo.toml index aff48c2cd..9385d969c 100644 --- a/discovery-handlers/onvif/Cargo.toml +++ b/discovery-handlers/onvif/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "akri-onvif" -version = "0.8.26" +version = "0.8.27" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/discovery-handlers/opcua/Cargo.toml b/discovery-handlers/opcua/Cargo.toml index 64ab33ff9..7f3e151b9 100644 --- a/discovery-handlers/opcua/Cargo.toml +++ b/discovery-handlers/opcua/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "akri-opcua" -version = "0.8.26" +version = "0.8.27" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/discovery-handlers/udev/Cargo.toml b/discovery-handlers/udev/Cargo.toml index 5ea72fc4b..2391f25c6 100644 --- a/discovery-handlers/udev/Cargo.toml +++ b/discovery-handlers/udev/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "akri-udev" -version = "0.8.26" +version = "0.8.27" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/discovery-utils/Cargo.toml b/discovery-utils/Cargo.toml index 4c848503b..ccb58fcc2 100644 --- a/discovery-utils/Cargo.toml +++ b/discovery-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "akri-discovery-utils" -version = "0.8.26" +version = "0.8.27" authors = ["Kate Goldenring "] edition = "2018" rust-version = "1.63.0" diff --git a/samples/brokers/udev-video-broker/Cargo.toml b/samples/brokers/udev-video-broker/Cargo.toml index 465dea2d5..8b12e49f5 100644 --- a/samples/brokers/udev-video-broker/Cargo.toml +++ b/samples/brokers/udev-video-broker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "udev-video-broker" -version = "0.8.26" +version = "0.8.27" authors = ["Kate Goldenring ", ""] edition = "2018" rust-version = "1.63.0" diff --git a/shared/Cargo.toml b/shared/Cargo.toml index db1de80e9..0a7a00cd0 100644 --- a/shared/Cargo.toml +++ b/shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "akri-shared" -version = "0.8.26" +version = "0.8.27" authors = [""] edition = "2018" rust-version = "1.63.0" diff --git a/version.txt b/version.txt index 85ccf6fa2..54e9046cf 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.8.26 +0.8.27 diff --git a/webhooks/validating/configuration/Cargo.toml b/webhooks/validating/configuration/Cargo.toml index 124b55718..8da9dbd41 100644 --- a/webhooks/validating/configuration/Cargo.toml +++ b/webhooks/validating/configuration/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "webhook-configuration" -version = "0.8.26" +version = "0.8.27" authors = ["DazWilkin "] edition = "2018" rust-version = "1.63.0"