Skip to content

Commit

Permalink
workflows: ipsec-e2e: clean up escaping artifacts
Browse files Browse the repository at this point in the history
Looks like these are no longer needed, and potentially cause breakage for
the workflow.

Signed-off-by: Julian Wiedmann <jwi@isovalent.com>
  • Loading branch information
julianwiedmann committed Mar 26, 2024
1 parent cdf043a commit a09e401
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/conformance-ipsec-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ jobs:
# We expect the amount of keys in use to grow during rotation.
while true; do
keys_in_use=$(kubectl -n kube-system exec daemonset/cilium -c cilium-agent -- cilium encrypt status | awk '/Keys in use/ {print $NF}')
if [[ \$keys_in_use == \$exp_nb_keys ]]; then
if [[ $keys_in_use == $exp_nb_keys ]]; then
break
fi
echo "Waiting until key rotation starts (seeing $keys_in_use keys)"
Expand All @@ -350,7 +350,7 @@ jobs:
sleep $((4*60))
while true; do
keys_in_use=$(kubectl -n kube-system exec daemonset/cilium -c cilium-agent -- cilium encrypt status | awk '/Keys in use/ {print $NF}')
if [[ \$keys_in_use == \$exp_nb_keys ]]; then
if [[ $keys_in_use == $exp_nb_keys ]]; then
break
fi
echo "Waiting until key rotation completes (seeing $keys_in_use keys)"
Expand Down

0 comments on commit a09e401

Please sign in to comment.