add redis initContainer

main
ycz008 2023-06-06 14:11:51 +08:00
parent 2320563ba5
commit 894389b9d1
1 changed files with 7 additions and 1 deletions

View File

@ -32,6 +32,13 @@ spec:
labels:
app: redis
spec:
initContainers:
- name: init
image: busybox
imagePullPolicy: IfNotPresent
command: ["/bin/sh", "-c", "sysctl -w net.core.somaxconn=1024"]
securityContext:
privileged: true
containers:
- name: redis
image: redis:6.2.12
@ -87,4 +94,3 @@ spec:
selector:
app: redis
type: NodePort