This commit is contained in:
2025-07-17 11:17:33 +02:00
parent 262c7361bd
commit b5160ecee7
2 changed files with 6 additions and 6 deletions

View File

@ -7,7 +7,7 @@ metadata:
app.kubernetes.io/managed-by: kustomize
app.kubernetes.io/name: valkey
app.kubernetes.io/part-of: valkey
app.kubernetes.io/version: 8.1.1
app.kubernetes.io/version: 8.1.3
name: valkey-node
spec:
persistentVolumeClaimRetentionPolicy:
@ -33,7 +33,7 @@ spec:
app.kubernetes.io/instance: valkey
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: valkey
app.kubernetes.io/version: 8.1.1
app.kubernetes.io/version: 8.1.3
helm.sh/chart: valkey-3.0.7
spec:
shareProcessNamespace: true
@ -107,7 +107,7 @@ spec:
name: valkey-data
containers:
- name: valkey
image: reg.cadoles.com/dh/valkey/valkey:8.1.1-alpine3.21
image: reg.cadoles.com/dh/valkey/valkey:8.1.3-alpine3.22
command:
- /opt/scripts/start-node.sh
args:
@ -194,7 +194,7 @@ spec:
- mountPath: /data
name: valkey-data
- name: sentinel
image: reg.cadoles.com/dh/valkey/valkey:8.1.1-alpine3.21
image: reg.cadoles.com/dh/valkey/valkey:8.1.3-alpine3.22
imagePullPolicy: IfNotPresent
command:
- /opt/scripts/startSentinel.sh

View File

@ -1,5 +1,5 @@
# Base image
FROM golang:tip-alpine3.21 AS builder
FROM golang:tip-alpine3.22 AS builder
# Set directory to known value
WORKDIR /app
@ -14,7 +14,7 @@ RUN git clone https://github.com/coveooss/gotemplate.git . && \
CGO_ENABLED=0 go build
FROM alpine:3.21
FROM alpine:3.22
#
COPY --from=builder /app/gotemplate /gotemplate
COPY --from=builder /usr/bin/valkey-cli /valkey-cli