From 13a27a4de1988ce42a702a88b7173c03d3d0f716 Mon Sep 17 00:00:00 2001 From: Sergiy Kulanov Date: Sun, 22 Mar 2026 10:52:02 +0200 Subject: [PATCH] EPMDEDP-16587: fix: add image.digest to Helm scaffolding README templates Add the image.digest value entry to README.tmpl for both Kubernetes and OpenShift scaffolding templates in alphabetical order matching helm-docs output. Prevents helm-docs drift on code-review pipelines for newly scaffolded applications. Relates-to: EPMDEDP-16587 Signed-off-by: Sergiy Kulanov --- build/templates/applications/helm-chart/kubernetes/README.tmpl | 1 + build/templates/applications/helm-chart/openshift/README.tmpl | 1 + 2 files changed, 2 insertions(+) diff --git a/build/templates/applications/helm-chart/kubernetes/README.tmpl b/build/templates/applications/helm-chart/kubernetes/README.tmpl index 88bc3fa6..db3797d1 100644 --- a/build/templates/applications/helm-chart/kubernetes/README.tmpl +++ b/build/templates/applications/helm-chart/kubernetes/README.tmpl @@ -26,6 +26,7 @@ A Helm chart for Kubernetes | autoscaling.minReplicas | int | `1` | | | autoscaling.targetCPUUtilizationPercentage | int | `80` | | | fullnameOverride | string | `""` | | +| image.digest | string | `""` | Image digest for immutable reference (e.g., sha256:abc123...). If set, deployed as :tag@digest. | | image.pullPolicy | string | `"IfNotPresent"` | | | image.repository | string | `"{{.Name}}"` | | | image.tag | string | `""` | Overrides the image tag whose default is the chart appVersion. | diff --git a/build/templates/applications/helm-chart/openshift/README.tmpl b/build/templates/applications/helm-chart/openshift/README.tmpl index 476694d6..6e7aa946 100644 --- a/build/templates/applications/helm-chart/openshift/README.tmpl +++ b/build/templates/applications/helm-chart/openshift/README.tmpl @@ -27,6 +27,7 @@ A Helm chart for Kubernetes | autoscaling.targetCPUUtilizationPercentage | int | `80` | | | framework | string | `"{{.Framework}}"` | | | fullnameOverride | string | `""` | | +| image.digest | string | `""` | Image digest for immutable reference (e.g., sha256:abc123...). If set, deployed as :tag@digest. | | image.pullPolicy | string | `"IfNotPresent"` | | | image.repository | string | `"{{.Name}}"` | | | image.tag | string | `""` | Overrides the image tag whose default is the chart appVersion. |