From 70f5215fc9325fb547434cf6f7b5c9667b86bcdb Mon Sep 17 00:00:00 2001 From: Anastassios Nanos Date: Sun, 7 Dec 2025 09:23:51 +0200 Subject: [PATCH] fix(helm): Fix typo in helm template for brokerJob image tag Currently, in the helm template, the tag for the brokerJob is not taken into account. Signed-off-by: Anastassios Nanos --- Cargo.lock | 28 +++++++++---------- Cargo.toml | 2 +- deployment/helm/Chart.yaml | 4 +-- .../helm/templates/custom-configuration.yaml | 4 +-- version.txt | 2 +- 5 files changed, 20 insertions(+), 20 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3e88be4a0..8f8b4d258 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -215,7 +215,7 @@ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" [[package]] name = "agent" -version = "0.13.19" +version = "0.13.20" dependencies = [ "akri-debug-echo", "akri-discovery-utils", @@ -279,7 +279,7 @@ dependencies = [ [[package]] name = "akri-debug-echo" -version = "0.13.19" +version = "0.13.20" dependencies = [ "akri-discovery-utils", "akri-shared", @@ -297,7 +297,7 @@ dependencies = [ [[package]] name = "akri-discovery-utils" -version = "0.13.19" +version = "0.13.20" dependencies = [ "akri-shared", "anyhow", @@ -319,7 +319,7 @@ dependencies = [ [[package]] name = "akri-onvif" -version = "0.13.19" +version = "0.13.20" dependencies = [ "akri-discovery-utils", "anyhow", @@ -348,7 +348,7 @@ dependencies = [ [[package]] name = "akri-opcua" -version = "0.13.19" +version = "0.13.20" dependencies = [ "akri-discovery-utils", "anyhow", @@ -368,7 +368,7 @@ dependencies = [ [[package]] name = "akri-shared" -version = "0.13.19" +version = "0.13.20" dependencies = [ "anyhow", "async-trait", @@ -393,7 +393,7 @@ dependencies = [ [[package]] name = "akri-udev" -version = "0.13.19" +version = "0.13.20" dependencies = [ "akri-discovery-utils", "anyhow", @@ -912,7 +912,7 @@ dependencies = [ [[package]] name = "controller" -version = "0.13.19" +version = "0.13.20" dependencies = [ "akri-shared", "anyhow", @@ -1063,7 +1063,7 @@ checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" [[package]] name = "debug-echo-discovery-handler" -version = "0.13.19" +version = "0.13.20" dependencies = [ "akri-debug-echo", "akri-discovery-utils", @@ -2377,7 +2377,7 @@ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" [[package]] name = "onvif-discovery-handler" -version = "0.13.19" +version = "0.13.20" dependencies = [ "akri-discovery-utils", "akri-onvif", @@ -2426,7 +2426,7 @@ dependencies = [ [[package]] name = "opcua-discovery-handler" -version = "0.13.19" +version = "0.13.20" dependencies = [ "akri-discovery-utils", "akri-opcua", @@ -4006,7 +4006,7 @@ dependencies = [ [[package]] name = "udev-discovery-handler" -version = "0.13.19" +version = "0.13.20" dependencies = [ "akri-discovery-utils", "akri-udev", @@ -4017,7 +4017,7 @@ dependencies = [ [[package]] name = "udev-video-broker" -version = "0.13.19" +version = "0.13.20" dependencies = [ "akri-shared", "env_logger", @@ -4285,7 +4285,7 @@ dependencies = [ [[package]] name = "webhook-configuration" -version = "0.13.19" +version = "0.13.20" dependencies = [ "actix-rt", "actix-web", diff --git a/Cargo.toml b/Cargo.toml index bf8bbd0c8..d19675a1f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.13.19" +version = "0.13.20" edition = "2024" license = "Apache-2.0" homepage = "https://docs.akri.sh/" diff --git a/deployment/helm/Chart.yaml b/deployment/helm/Chart.yaml index e4aacabb8..7ac2d071c 100644 --- a/deployment/helm/Chart.yaml +++ b/deployment/helm/Chart.yaml @@ -16,9 +16,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.13.19 +version: 0.13.20 # 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.13.19 +appVersion: 0.13.20 diff --git a/deployment/helm/templates/custom-configuration.yaml b/deployment/helm/templates/custom-configuration.yaml index 4fa584da3..5b40ec755 100644 --- a/deployment/helm/templates/custom-configuration.yaml +++ b/deployment/helm/templates/custom-configuration.yaml @@ -63,7 +63,7 @@ spec: spec: containers: - name: {{ .Values.custom.configuration.name }}-broker - image: {{ printf "%s:%s" .Values.custom.configuration.brokerJob.image.repository .Values.custom.configuration.brokerPod.image.tag | quote }} + image: {{ printf "%s:%s" .Values.custom.configuration.brokerJob.image.repository .Values.custom.configuration.brokerJob.image.tag | quote }} {{- if .Values.custom.configuration.brokerJob.command }} command: {{- toYaml .Values.custom.configuration.brokerJob.command | nindent 14 }} @@ -145,4 +145,4 @@ spec: brokerProperties: {} {{- end }} capacity: {{ .Values.custom.configuration.capacity }} -{{- end }} \ No newline at end of file +{{- end }} diff --git a/version.txt b/version.txt index 62dc2ab89..33f31bc70 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.13.19 +0.13.20