We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 774713d commit 8d1867aCopy full SHA for 8d1867a
1 file changed
.github/workflows/e2e-reusable-pipeline.yml
@@ -508,7 +508,8 @@ jobs:
508
run: |
509
extraNic=$(kubectl get nodenetworkinterface -l network.deckhouse.io/interface-type=NIC -o json | jq -r '.items[] | select(.status.operationalState == "Up") | select(.status.ifName != "eno1" and .status.ifName != "enp1s0") | .metadata.name')
510
for nic in $extraNic; do
511
- kubectl label nodenetworkinterface $nic nic-group=extra
+ echo "[INFO] Label nodenetworkinterface $nic nic-group=extra"
512
+ kubectl label nodenetworkinterfaces $nic nic-group=extra
513
done
514
515
cat <<'EOF' | kubectl apply -f -
0 commit comments