From 9ba19784ef3fc921136080ae142fde3d0611b8de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Neves?= Date: Fri, 26 Jun 2026 22:03:34 +0000 Subject: [PATCH] docs(deployment): pin image version in Kubernetes example Change image: lightning-decoder:latest to image: lightning-decoder:0.7.1 in the Kubernetes Deployment manifest example. Using :latest in Kubernetes manifests is an anti-pattern because it makes deployments non-reproducible and can cause unexpected version changes on pod restarts. Pinning to a specific version tag follows container best practices and is consistent with the project's versioning. --- DEPLOYMENT_DOCKER.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEPLOYMENT_DOCKER.md b/DEPLOYMENT_DOCKER.md index 45802f9..dd0f92c 100644 --- a/DEPLOYMENT_DOCKER.md +++ b/DEPLOYMENT_DOCKER.md @@ -105,7 +105,7 @@ spec: spec: containers: - name: lightning-decoder - image: lightning-decoder:latest + image: lightning-decoder:0.7.1 # Update to match your built image version ports: - containerPort: 80 resources: