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/managed-by: kustomize
app.kubernetes.io/name: valkey app.kubernetes.io/name: valkey
app.kubernetes.io/part-of: valkey app.kubernetes.io/part-of: valkey
app.kubernetes.io/version: 8.1.1 app.kubernetes.io/version: 8.1.3
name: valkey-node name: valkey-node
spec: spec:
persistentVolumeClaimRetentionPolicy: persistentVolumeClaimRetentionPolicy:
@ -33,7 +33,7 @@ spec:
app.kubernetes.io/instance: valkey app.kubernetes.io/instance: valkey
app.kubernetes.io/managed-by: Helm app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: valkey 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 helm.sh/chart: valkey-3.0.7
spec: spec:
shareProcessNamespace: true shareProcessNamespace: true
@ -107,7 +107,7 @@ spec:
name: valkey-data name: valkey-data
containers: containers:
- name: valkey - 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: command:
- /opt/scripts/start-node.sh - /opt/scripts/start-node.sh
args: args:
@ -194,7 +194,7 @@ spec:
- mountPath: /data - mountPath: /data
name: valkey-data name: valkey-data
- name: sentinel - 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 imagePullPolicy: IfNotPresent
command: command:
- /opt/scripts/startSentinel.sh - /opt/scripts/startSentinel.sh

View File

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