Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/redis/templates/config.cue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
// Container image
image: {
repository: *"cgr.dev/chainguard/redis" | string
tag: *"7.0.8" | string
tag: *"7.0.9" | string
pullPolicy: *"IfNotPresent" | string
}
imagePullSecrets?: [...corev1.LocalObjectReference]
Expand Down
2 changes: 1 addition & 1 deletion examples/redis/templates/replica.deployment.cue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
}
}
spec: appsv1.#DeploymentSpec & {
strategy: type: "Recreate"
strategy: type: "RollingUpdate"
replicas: _config.readonly.replicas
selector: matchLabels: _selectorLabel
template: {
Expand Down