Merge branch 'feature/KASM-6235_egress_sysbox_support' into 'develop'

KASM-6235 Update egress waiting logic to account for the sysbox workaround

Closes KASM-6235

See merge request kasm-technologies/internal/workspaces-core-images!215
This commit is contained in:
Justin Travis 2024-07-20 22:40:16 +00:00
commit aca1765bfd

View File

@ -450,8 +450,9 @@ function wait_for_network_devices() {
fi
for interface in $interfaces; do
if [[ $interface == eth* ]]; then
return
# ignore eth* interfaces if egress gateway is enabled
if [[ $interface == eth* && -z $KASM_SVC_EGRESS ]]; then
return
fi
if [[ $interface == k-p-* ]]; then