We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c40a882 commit 0760538Copy full SHA for 0760538
.github/workflows/test-kubernetes.yaml
@@ -126,12 +126,13 @@ jobs:
126
end=$(( $(date +%s) + $max_wait_time_seconds ))
127
start=$(date +%s)
128
129
+ sleep 5
130
while [ $(date +%s) -le $end ]; do
- OUT_CRT=$(kubectl get certificate/dnsimple-test -o json | jsonpath='{.status.conditions}')
131
- OUT_CRQ=$(k get CertificateRequest -o json)
+ OUT_CRT=$(kubectl get certificate/dnsimple-test -o jsonpath='{.status.conditions}')
132
+ OUT_CRQ=$(kubectl get CertificateRequest -o json)
133
134
echo "Certificate:"
- echo "$OUT_CRT" | jq
135
+ echo "$OUT_CRT"
136
137
echo "CertificateRequest:"
138
echo "$OUT_CRQ" | jq .items[0].status.conditions
0 commit comments