From 3e26833250c3d173032e6815acc555871dabe674 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jozef=20Vol=C3=A1k?= Date: Thu, 6 Jun 2024 16:20:55 +0200 Subject: [PATCH] [performance-monitor] remove latest tag from helm charts (#378) Co-authored-by: Jozef Volak --- .github/workflows/linter.yaml | 1 + charts/performance-monitor/Chart.yaml | 10 ++++++++-- charts/performance-monitor/README.md | 2 +- charts/performance-monitor/values.yaml | 3 +-- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/linter.yaml b/.github/workflows/linter.yaml index 45dae905..bff3f789 100644 --- a/.github/workflows/linter.yaml +++ b/.github/workflows/linter.yaml @@ -26,6 +26,7 @@ jobs: VALIDATE_LUA: false VALIDATE_JSCPD: false VALIDATE_NATURAL_LANGUAGE : false + VALIDATE_MARKDOWN: false FILTER_REGEX_EXCLUDE: .*config/.*.json DEFAULT_BRANCH: main GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/charts/performance-monitor/Chart.yaml b/charts/performance-monitor/Chart.yaml index 87b4a93b..70c6ad6e 100644 --- a/charts/performance-monitor/Chart.yaml +++ b/charts/performance-monitor/Chart.yaml @@ -3,8 +3,8 @@ name: performance-monitor description: FRINX Performance Monitor chart for FRINX-machine icon: https://avatars.githubusercontent.com/u/23452093?s=200&v=4 type: application -version: 0.1.0 -appVersion: "6.1.0" +version: 0.1.1 +appVersion: "6.0.0" dependencies: - condition: postgresql.enabled name: postgresql @@ -22,3 +22,9 @@ annotations: artifacthub.io/images: | - name: performance-monitor image: frinx/performance-monitor:6.0.0 + artifacthub.io/changes: | + - kind: fixed + description: Removed latest tag from helm values + links: + - name: GitHub PR + url: https://github.com/FRINXio/helm-charts/pull/378 diff --git a/charts/performance-monitor/README.md b/charts/performance-monitor/README.md index 1defd3d6..2d559ed8 100644 --- a/charts/performance-monitor/README.md +++ b/charts/performance-monitor/README.md @@ -35,7 +35,7 @@ FRINX Performance Monitor chart for FRINX-machine | fullnameOverride | string | `""` | String to partially override app name | | image.pullPolicy | string | `"IfNotPresent"` | Image pull policy | | image.repository | string | `"frinx/performance-monitor"` | Performance Monitor image repository | -| image.tag | string | `"latest"` | Overrides the image tag whose default is the chart appVersion. TODO remove it when image with tag will be released | +| image.tag | string | `""` | Overrides the image tag whose default is the chart appVersion | | imagePullSecrets | list | `[{"name":"regcred"}]` | [Image Pull Secrets](https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/) | | ingress.annotations | object | `{}` | Additional annotations for the Ingress resource | | ingress.className | string | `""` | IngressClass that will be be used to implement the Ingress | diff --git a/charts/performance-monitor/values.yaml b/charts/performance-monitor/values.yaml index 50577619..07fce3d2 100644 --- a/charts/performance-monitor/values.yaml +++ b/charts/performance-monitor/values.yaml @@ -9,8 +9,7 @@ image: # -- Performance Monitor image repository repository: frinx/performance-monitor # -- Overrides the image tag whose default is the chart appVersion. - # TODO remove it when image with tag will be released - tag: "latest" + tag: "" # -- Image pull policy pullPolicy: IfNotPresent