3 Commits

Author SHA1 Message Date
Unbound Release 0b76400aa6 chore(release): prepare for 1.3.5 2025-01-24 14:48:27 +00:00
argoyle de495a8c5e fix(deployment): update label to use standardized format
Change the labels for the cron-checker application in the 
deployment configuration to adhere to Kubernetes' recommended 
labeling conventions. This improves consistency and allows 
better integration with tools that rely on standardized 
labels for application management.
2025-01-24 15:39:11 +01:00
Renovate 3ae2e157af chore(deps): update golang:1.23.5 docker digest to 8c10f21 2025-01-22 04:06:48 +00:00
3 changed files with 10 additions and 4 deletions
+6
View File
@@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file.
## [1.3.5] - 2025-01-24
### 🐛 Bug Fixes
- *(deployment)* Update label to use standardized format
## [1.3.4] - 2025-01-17
### 🐛 Bug Fixes
+1 -1
View File
@@ -1,4 +1,4 @@
FROM golang:1.23.5@sha256:51a6466e8dbf3e00e422eb0f7a97ac450b2d57b33617bbe8d2ee0bddcd9d0d37 as build
FROM golang:1.23.5@sha256:8c10f21bec412f08f73aa7b97ca5ac5f28a39d8a88030ad8a339fd0a781d72b4 as build
WORKDIR /build
ENV CGO_ENABLED=0
ADD . /build
+3 -3
View File
@@ -34,12 +34,12 @@ apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: cron-checker
app.kubernetes.io/name: cron-checker
name: cron-checker
spec:
selector:
matchLabels:
app: cron-checker
app.kubernetes.io/name: cron-checker
strategy:
rollingUpdate:
maxSurge: 1
@@ -48,7 +48,7 @@ spec:
template:
metadata:
labels:
app: cron-checker
app.kubernetes.io/name: cron-checker
spec:
serviceAccountName: cron-checker
containers: