Skip to content

Commit 3391803

Browse files
k -> kubectl, extra sleep
1 parent c40a882 commit 3391803

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/test-kubernetes.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -126,12 +126,13 @@ jobs:
126126
end=$(( $(date +%s) + $max_wait_time_seconds ))
127127
start=$(date +%s)
128128
129+
sleep 5
129130
while [ $(date +%s) -le $end ]; do
130131
OUT_CRT=$(kubectl get certificate/dnsimple-test -o json | jsonpath='{.status.conditions}')
131-
OUT_CRQ=$(k get CertificateRequest -o json)
132+
OUT_CRQ=$(kubectl get CertificateRequest -o json)
132133
133134
echo "Certificate:"
134-
echo "$OUT_CRT" | jq
135+
echo "$OUT_CRT"
135136
136137
echo "CertificateRequest:"
137138
echo "$OUT_CRQ" | jq .items[0].status.conditions

0 commit comments

Comments
 (0)