Skip to content

Commit

Permalink
Fix Minio check-redis startup script
Browse files Browse the repository at this point in the history
Fix the Minio initContainer script that waits for Redis to start.
  • Loading branch information
djjuhasz committed Apr 1, 2024
1 parent 6b6cdf8 commit 44b05c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/kube/base/minio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spec:
[
"sh",
"-c",
"until echo STATUS | nc -w 2 redis.enduro-sdps 6379; do echo waiting for redis to start; sleep 1; done;",
"until nc -w 2 -vz redis.enduro-sdps 6379; do echo waiting for redis to start; sleep 1; done;",
]
containers:
- name: minio
Expand Down

0 comments on commit 44b05c2

Please sign in to comment.