Upgrade version (0.16.4)
This commit upgrades the application to the version 0.16.4. It also fixes Debian changelogs to avoid warning messages during the build. TEST PLAN: PASS: Build all packages generating an application tarball and check whether the charts' versions are correct. PASS: Check whether application upgrade executes successfully. PASS: Validate basic application lifecycle operations: upload/apply/remove/delete. PASS: Check whether "app.starlingx.io/component" is applied to containers. PASS: Validate helm override parameters are correctly applied. Story: 2011238 Task: 51159 Change-Id: Id2836f79625cf1a3dd4d1173244bb918af09fc3f Signed-off-by: Reynaldo P Gomes <reynaldo.patronegomes@windriver.com>
This commit is contained in:
parent
2bdcf83155
commit
2f178089fb
@ -1,3 +1,9 @@
|
||||
node-feature-discovery-helm (0.16-4) unstable; urgency=medium
|
||||
|
||||
* Update to upstream release version 0.16-4.
|
||||
|
||||
-- Reynaldo P Gomes <reynaldo.patronegomes@windriver.com> Thu, 10 Oct 2024 12:00:00 +0000
|
||||
|
||||
node-feature-discovery-helm (0.15-4) unstable; urgency=medium
|
||||
|
||||
* New upstream release version 0.15-4.
|
||||
@ -8,4 +14,4 @@ node-feature-discovery-helm (0.15-0) unstable; urgency=medium
|
||||
|
||||
* Initial release.
|
||||
|
||||
-- David Bastos <david.barbosabastos@windriver.com> Fri, 29 Dec 2023 20:07:42 +0000
|
||||
-- David Bastos <david.barbosabastos@windriver.com> Fri, 29 Dec 2023 20:07:42 +0000
|
||||
|
@ -11,5 +11,5 @@ Package: node-feature-discovery-helm
|
||||
Section: libs
|
||||
Architecture: any
|
||||
Depends: ${misc:Depends}
|
||||
Description: StarlingX Ceph CSI Helm Charts
|
||||
This package contains helm charts for the Ceph CSI application.
|
||||
Description: StarlingX Node Feature Discovery Helm Charts
|
||||
This package contains helm charts for the Node Feature Discovery application.
|
||||
|
@ -1,15 +1,14 @@
|
||||
From 61c2d96f7346ea914ce550f73be5a67766a1ae61 Mon Sep 17 00:00:00 2001
|
||||
From: Guilherme Santos <guilherme.santos@windriver.com>
|
||||
Date: Fri, 10 May 2024 17:11:10 -0300
|
||||
From cca96235b5b37380f3b91b87b899b6ada999d800 Mon Sep 17 00:00:00 2001
|
||||
From: Reynaldo P Gomes <reynaldo.patronegomes@windriver.com>
|
||||
Date: Thu, 10 Oct 2024 11:46:19 -0300
|
||||
Subject: [PATCH] Add label platform/application to pods
|
||||
|
||||
Add support to 'app.starlingx.io/component' to be overwritten
|
||||
by user override, with possible values being 'platform' and
|
||||
'application'. With 'platform' being the default value. This
|
||||
change will also restart the pods if the label in namespace
|
||||
change.
|
||||
Add support to 'app.starlingx.io/component' to be overwritten by user
|
||||
override, with possible values being 'platform' and 'application'. With
|
||||
'platform' being the default value. This change will also restart the
|
||||
pods if the label in namespace change.
|
||||
|
||||
Signed-off-by: Guilherme Santos <guilherme.santos@windriver.com>
|
||||
Signed-off-by: Reynaldo P Gomes <reynaldo.patronegomes@windriver.com>
|
||||
---
|
||||
templates/master.yaml | 2 ++
|
||||
templates/nfd-gc.yaml | 2 ++
|
||||
@ -19,10 +18,10 @@ Signed-off-by: Guilherme Santos <guilherme.santos@windriver.com>
|
||||
5 files changed, 10 insertions(+)
|
||||
|
||||
diff --git a/templates/master.yaml b/templates/master.yaml
|
||||
index 53a291e0..5de99049 100644
|
||||
index 162f64f4..a5eb87ad 100644
|
||||
--- a/templates/master.yaml
|
||||
+++ b/templates/master.yaml
|
||||
@@ -21,10 +21,12 @@ spec:
|
||||
@@ -22,10 +22,12 @@ spec:
|
||||
metadata:
|
||||
labels:
|
||||
{{- include "node-feature-discovery.selectorLabels" . | nindent 8 }}
|
||||
@ -34,12 +33,12 @@ index 53a291e0..5de99049 100644
|
||||
+ configchecksum: {{ toYaml .Values.isApplicationLabel | sha256sum | trunc 63 }}
|
||||
{{- end }}
|
||||
spec:
|
||||
{{- with .Values.imagePullSecrets }}
|
||||
{{- with .Values.priorityClassName }}
|
||||
diff --git a/templates/nfd-gc.yaml b/templates/nfd-gc.yaml
|
||||
index 1e0e1232..ccdfa7d3 100644
|
||||
index 220015a3..44be2436 100644
|
||||
--- a/templates/nfd-gc.yaml
|
||||
+++ b/templates/nfd-gc.yaml
|
||||
@@ -21,10 +21,12 @@ spec:
|
||||
@@ -22,10 +22,12 @@ spec:
|
||||
metadata:
|
||||
labels:
|
||||
{{- include "node-feature-discovery.selectorLabels" . | nindent 8 }}
|
||||
@ -53,10 +52,10 @@ index 1e0e1232..ccdfa7d3 100644
|
||||
spec:
|
||||
serviceAccountName: {{ include "node-feature-discovery.gc.serviceAccountName" . }}
|
||||
diff --git a/templates/topologyupdater.yaml b/templates/topologyupdater.yaml
|
||||
index f51c10e6..26f99866 100644
|
||||
index b0b36265..0af2d165 100644
|
||||
--- a/templates/topologyupdater.yaml
|
||||
+++ b/templates/topologyupdater.yaml
|
||||
@@ -20,10 +20,12 @@ spec:
|
||||
@@ -21,10 +21,12 @@ spec:
|
||||
metadata:
|
||||
labels:
|
||||
{{- include "node-feature-discovery.selectorLabels" . | nindent 8 }}
|
||||
@ -70,10 +69,10 @@ index f51c10e6..26f99866 100644
|
||||
spec:
|
||||
serviceAccountName: {{ include "node-feature-discovery.topologyUpdater.serviceAccountName" . }}
|
||||
diff --git a/templates/worker.yaml b/templates/worker.yaml
|
||||
index f49f9bd6..b827e0a3 100644
|
||||
index fb19270d..b40ddb23 100644
|
||||
--- a/templates/worker.yaml
|
||||
+++ b/templates/worker.yaml
|
||||
@@ -20,10 +20,12 @@ spec:
|
||||
@@ -21,10 +21,12 @@ spec:
|
||||
metadata:
|
||||
labels:
|
||||
{{- include "node-feature-discovery.selectorLabels" . | nindent 8 }}
|
||||
@ -87,7 +86,7 @@ index f49f9bd6..b827e0a3 100644
|
||||
spec:
|
||||
dnsPolicy: ClusterFirstWithHostNet
|
||||
diff --git a/values.yaml b/values.yaml
|
||||
index d4919bca..942f6410 100644
|
||||
index 2a4106c8..bab8e008 100644
|
||||
--- a/values.yaml
|
||||
+++ b/values.yaml
|
||||
@@ -6,6 +6,8 @@ image:
|
||||
@ -100,5 +99,5 @@ index d4919bca..942f6410 100644
|
||||
fullnameOverride: ""
|
||||
namespaceOverride: ""
|
||||
--
|
||||
2.34.1
|
||||
2.43.0
|
||||
|
||||
|
@ -1,10 +1,10 @@
|
||||
---
|
||||
debname: node-feature-discovery-helm
|
||||
debver: 0.15-4
|
||||
debver: 0.16-4
|
||||
dl_path:
|
||||
name: node-feature-discovery-0.15.4.tgz
|
||||
url: https://github.com/kubernetes-sigs/node-feature-discovery/releases/download/v0.15.4/node-feature-discovery-chart-0.15.4.tgz
|
||||
sha256sum: 8ea3f4745e5ff0271746d4468c79d3d7ce72a1c5577225d536a1cf033b2c6398
|
||||
name: node-feature-discovery-0.16.4.tgz
|
||||
url: https://github.com/kubernetes-sigs/node-feature-discovery/releases/download/v0.16.4/node-feature-discovery-chart-0.16.4.tgz
|
||||
sha256sum: e15d6557372f977c8decdd694b82d41542ffca34af93b6ba790a17a8766b5c69
|
||||
src_files:
|
||||
- node-feature-discovery-helm/files/Makefile
|
||||
revision:
|
||||
|
@ -1,20 +1,26 @@
|
||||
stx-node-feature-discovery (1.2-1) unstable; urgency=medium
|
||||
|
||||
* Rename package.
|
||||
|
||||
-- Reynaldo P Gomes <reynaldo.patronegomes@windriver.com> Thu, 10 Oct 2024 12:00:00 +0000
|
||||
|
||||
stx-node-feature-discovery (1.2-0) unstable; urgency=medium
|
||||
|
||||
* Rename package.
|
||||
|
||||
-- Guilherme Santos <guilherme.santos@windriver.com> Tue, 22 May 2024 11:48:32 +0000
|
||||
-- Guilherme Santos <guilherme.santos@windriver.com> Tue, 22 May 2024 11:48:32 +0000
|
||||
|
||||
stx-node-feature-discovery-helm (1.1-1) unstable; urgency=medium
|
||||
|
||||
* Update image tag.
|
||||
|
||||
-- Guilherme Santos <guilherme.santos@windriver.com> Tue, 21 May 2024 10:00:00 +0000
|
||||
-- Guilherme Santos <guilherme.santos@windriver.com> Tue, 21 May 2024 10:00:00 +0000
|
||||
|
||||
stx-node-feature-discovery-helm (1.1-0) unstable; urgency=medium
|
||||
|
||||
* New upstream release.
|
||||
|
||||
-- Thiago Antonio Miranda <tmarques@windriver.com> Wed, 3 Jan 2024 12:00:00 +0000
|
||||
-- Thiago Antonio Miranda <tmarques@windriver.com> Wed, 3 Jan 2024 12:00:00 +0000
|
||||
|
||||
stx-node-feature-discovery-helm (1.0-1) unstable; urgency=medium
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
debname: stx-node-feature-discovery
|
||||
debver: 1.2-0
|
||||
debver: 1.2-1
|
||||
src_path: stx-node-feature-discovery
|
||||
revision:
|
||||
dist: $STX_DIST
|
||||
|
@ -9,7 +9,7 @@ image:
|
||||
# cleans the default digest value since sysinv changes the digest when pushing the image to the local registry
|
||||
digest: ""
|
||||
repository: registry.k8s.io/nfd/node-feature-discovery
|
||||
tag: v0.15.4
|
||||
tag: v0.16.4
|
||||
|
||||
namespaceOverride: "node-feature-discovery"
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user