Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Commit

Permalink
further fix of bash magic
Browse files Browse the repository at this point in the history
  • Loading branch information
salovasz authored and siliconbrain committed Jan 19, 2023
1 parent 358d116 commit 1d695de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion drain-watch-image/drain-watch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ done
# this loop will not go on indefinitely because the custom-runner's HTTP endpoint should
# come up eventually and won't terminate without a signal from outside (barring errors)
echo '['$(date)']' 'waiting for custom-runner HTTP endpoint to become available'
while [ "$(curl -so /dev/null-w '%{http_code}' localhost:735)"=="000" ]
until curl -so /dev/null ${CUSTOM_RUNNER_ADDRESS}
do
[ -z "$DEBUG" ] && echo '['$(date)']' 'custom-runner HTTP endpoint not available, waiting'
sleep 1
Expand Down
2 changes: 1 addition & 1 deletion pkg/sdk/logging/api/v1beta1/logging_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ const (
DefaultFluentdImageTag = "v1.14.6-alpine-5"
DefaultFluentdBufferStorageVolumeName = "fluentd-buffer"
DefaultFluentdDrainWatchImageRepository = "ghcr.io/banzaicloud/fluentd-drain-watch"
DefaultFluentdDrainWatchImageTag = "v0.0.4"
DefaultFluentdDrainWatchImageTag = "v0.0.2"
DefaultFluentdDrainPauseImageRepository = "k8s.gcr.io/pause"
DefaultFluentdDrainPauseImageTag = "3.2"
DefaultFluentdVolumeModeImageRepository = "busybox"
Expand Down

0 comments on commit 1d695de

Please sign in to comment.