From c57318f34ea753858d8d0f37ad88b8edbd6899f5 Mon Sep 17 00:00:00 2001 From: David Bayliss Date: Mon, 9 Dec 2024 10:18:04 -0700 Subject: [PATCH] Changing helm chart to use AppVersion out of the box (#1147) --- helm/squidex7/README.md | 20 ++++++++++---------- helm/squidex7/values.yaml | 4 ++-- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/helm/squidex7/README.md b/helm/squidex7/README.md index eb5184891..34938646f 100644 --- a/helm/squidex7/README.md +++ b/helm/squidex7/README.md @@ -46,16 +46,16 @@ The command removes all the Kubernetes components associated with the chart and ### Global parameters -| Name | Description | Value | -| ------------------------- | ------------------------------ | ----------------- | -| `service.type` | Kubernetes Service type | `ClusterIP` | -| `service.port` | Kubernetes Service port | `80` | -| `deployment.replicaCount` | Number of instances. | `1` | -| `image.repository` | Squidex image registry | `squidex/squidex` | -| `image.tag` | Squidex image tag | `7.0.2` | -| `image.pullPolicy` | Squidex image pull policy | `IfNotPresent` | -| `ingress.enabled` | True to deploy an ingress | `true` | -| `ingress.hostName` | The host name for the ingress. | `squidex.local` | +| Name | Description | Value | +| ------------------------- | ------------------------------ | ------------------------------ | +| `service.type` | Kubernetes Service type | `ClusterIP` | +| `service.port` | Kubernetes Service port | `80` | +| `deployment.replicaCount` | Number of instances. | `1` | +| `image.repository` | Squidex image registry | `squidex/squidex` | +| `image.tag` | Squidex image tag | null: Uses chart's App Version | +| `image.pullPolicy` | Squidex image pull policy | `IfNotPresent` | +| `ingress.enabled` | True to deploy an ingress | `true` | +| `ingress.hostName` | The host name for the ingress. | `squidex.local` | ### Squidex parameters diff --git a/helm/squidex7/values.yaml b/helm/squidex7/values.yaml index 7e925178c..8c4290a86 100644 --- a/helm/squidex7/values.yaml +++ b/helm/squidex7/values.yaml @@ -27,9 +27,9 @@ image: ## @param image.repository Squidex image registry ## repository: squidex/squidex - ## @param image.tag Squidex image tag + ## @param image.tag Override Squidex image tag; use chart's AppVersion otherwise ## - tag: "7.0.2" + # tag: "7.0.2" ## @param image.pullPolicy Squidex image pull policy ## pullPolicy: IfNotPresent