From 85852fdd4a5925acc9b6e4bf4c503ea2a213f531 Mon Sep 17 00:00:00 2001 From: Igor Soares Date: Thu, 1 Feb 2024 12:27:04 -0300 Subject: [PATCH] Add minimum Kubernetes version supported Add the minimum Kubernetes version supported to the application metadata file. The minimum Kubernetes version is set to 1.24.4 and should be changed accordingly for future application updates. The "supported_k8s_version:minimum" field is optional but it will become mandatory in the near future. Test Plan PASS: build-pkgs && build-image PASS: Apply application Story: 2010929 Task: 49492 Change-Id: I7ce4517b080f74d89a1b2d0bd82b8b1a66bd780b Signed-off-by: Igor Soares --- stx-audit-helm/stx-audit-helm/files/metadata.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/stx-audit-helm/stx-audit-helm/files/metadata.yaml b/stx-audit-helm/stx-audit-helm/files/metadata.yaml index b2a0835..23edf51 100644 --- a/stx-audit-helm/stx-audit-helm/files/metadata.yaml +++ b/stx-audit-helm/stx-audit-helm/files/metadata.yaml @@ -6,3 +6,6 @@ maintain_user_overrides: true upgrades: auto_update: true + +supported_k8s_version: + minimum: 1.24.4