From 26c33aa8f1e5877825acedee876543f42bc2d217 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=E1=B4=87=CA=80=C9=B4=E1=B4=85=20S=E1=B4=84=CA=9C?= =?UTF-8?q?=E1=B4=8F=CA=80=C9=A2=E1=B4=87=CA=80s?= Date: Tue, 29 Mar 2022 09:48:59 +0200 Subject: [PATCH] chore: Update template values --- templates/chart/README.md | 2 +- templates/chart/values.yaml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/templates/chart/README.md b/templates/chart/README.md index 0a7a0162..7c953425 100644 --- a/templates/chart/README.md +++ b/templates/chart/README.md @@ -79,7 +79,7 @@ N/A | env.TZ | string | `"UTC"` | Set the container timezone | | image.pullPolicy | string | `"IfNotPresent"` | image pull policy | | image.repository | string | `"${CHARTNAME}/${CHARTNAME}"` | image repository | -| image.tag | string | `"1.0.0"` | image tag | +| image.tag | string | chart.appVersion | image tag | | ingress.main | object | See values.yaml | Enable and configure ingress settings for the chart under this key. | | persistence | object | See values.yaml | Configure persistence settings for the chart under this key. | | service | object | See values.yaml | Configures service settings for the chart. | diff --git a/templates/chart/values.yaml b/templates/chart/values.yaml index 55a86643..dda7be03 100644 --- a/templates/chart/values.yaml +++ b/templates/chart/values.yaml @@ -9,7 +9,8 @@ image: # -- image repository repository: ${CHARTNAME}/${CHARTNAME} # -- image tag - tag: 1.0.0 + # @default -- chart.appVersion + tag: # -- image pull policy pullPolicy: IfNotPresent