From 194463c0af6979abbf8a7714fce7c270ba3a687d Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Sat, 22 Nov 2025 21:09:11 +0100 Subject: [PATCH] fix: update image reference for schemas-app in deploy.yaml Remove the specific digest from the schemas-app image in deploy.yaml to allow for easier versioning and flexibility. The change ensures that the latest image tagged with the commit hash is always used during deployments, improving management of application updates. --- k8s/deploy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k8s/deploy.yaml b/k8s/deploy.yaml index d3fff78..81501e0 100644 --- a/k8s/deploy.yaml +++ b/k8s/deploy.yaml @@ -37,7 +37,7 @@ spec: topologyKey: kubernetes.io/hostname containers: - name: schemas-app - image: registry.gitlab.com/unboundsoftware/schemas-app@sha256:9d759e76f6b924aa94b7371f09e41908ba1f68186146976da9987c703ce0abcf:${COMMIT} + image: registry.gitlab.com/unboundsoftware/schemas-app:${COMMIT} imagePullPolicy: IfNotPresent ports: - containerPort: 80 -- 2.52.0