Skip to content

Commit 78eb653

Browse files
authored
Fix inline bash command (#1598)
Summary: Fixed inline bash command for initContainer. Relevant Issues: #1596 Type of change: /kind bug Test Plan: None Signed-off-by: Florent Tatard <ftatard@addenergie.com>
1 parent 06fa2ce commit 78eb653

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

k8s/vizier/base/kelvin_deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ spec:
3939
command: ['sh', '-c', 'set -x;
4040
URL="https://${SERVICE_NAME}:${SERVICE_PORT}/healthz";
4141
until [ $(curl -m 0.5 -s -o /dev/null -w "%{http_code}" -k ${URL}) -eq 200 ]; do
42-
echo "waiting for ${URL}"
42+
echo "waiting for ${URL}";
4343
sleep 2;
4444
done;
4545
']

k8s/vizier/base/patch_sentry.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ spec:
1414
command: ['sh', '-c', 'set -x;
1515
URL="https://${SERVICE_NAME}:${SERVICE_PORT}/readyz";
1616
until [ $(curl -m 0.5 -s -o /dev/null -w "%{http_code}" -k ${URL}) -eq 200 ]; do
17-
echo "waiting for ${URL}"
17+
echo "waiting for ${URL}";
1818
sleep 2;
1919
done;
2020
']

k8s/vizier/base/query_broker_deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ spec:
4343
command: ['sh', '-c', 'set -x;
4444
URL="https://${SERVICE_NAME}:${SERVICE_PORT}/healthz";
4545
until [ $(curl -m 0.5 -s -o /dev/null -w "%{http_code}" -k ${URL}) -eq 200 ]; do
46-
echo "waiting for ${URL}"
46+
echo "waiting for ${URL}";
4747
sleep 2;
4848
done;
4949
']

k8s/vizier/pem/base/pem_daemonset.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,10 @@ spec:
4747
# yamllint disable-line rule:line-length
4848
image: gcr.io/pixie-oss/pixie-dev-public/curl:multiarch-7.87.0@sha256:f7f265d5c64eb4463a43a99b6bf773f9e61a50aaa7cefaf564f43e42549a01dd
4949
# yamllint disable rule:indentation
50-
command: ['sh', '-c',
51-
'
52-
set -x;
50+
command: ['sh', '-c', 'set -x;
5351
URL="https://${SERVICE_NAME}:${SERVICE_PORT}/healthz";
5452
until [ $(curl -m 0.5 -s -o /dev/null -w "%{http_code}" -k ${URL}) -eq 200 ]; do
55-
echo "waiting for ${URL}"
53+
echo "waiting for ${URL}";
5654
sleep 2;
5755
done;
5856
'

k8s/vizier/sanitizer/kelvin_deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
command: ['sh', '-c', 'set -x;
2121
URL="https://${SERVICE_NAME}:${SERVICE_PORT}/healthz";
2222
until [ $(curl -m 0.5 -s -o /dev/null -w "%{http_code}" -k ${URL}) -eq 200 ]; do
23-
echo "waiting for ${URL}"
23+
echo "waiting for ${URL}";
2424
sleep 2;
2525
done;
2626
']

0 commit comments

Comments
 (0)