We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fce1d2a commit 827b153Copy full SHA for 827b153
Makefile
@@ -203,8 +203,8 @@ e2e-test-bgp:
203
grep -v control-plane | awk '{print $$1}'
204
205
# Add bgp peering label to non control plane nodes
206
- KUBECONFIG=$(KUBECONFIG_PATH) kubectl label nodes $$(kubectl get nodes --no-headers |\
207
- grep -v control-plane | awk '{print $$1}' | paste -sd " " -) cilium-bgp-peering=true --overwrite
+ KUBECONFIG=$(KUBECONFIG_PATH) kubectl get nodes --no-headers | grep -v control-plane |\
+ awk '{print $1}' | xargs -I {} kubectl label nodes {} cilium-bgp-peering=true --overwrite
208
209
# First patch: Add the necessary RBAC permissions
210
KUBECONFIG=$(KUBECONFIG_PATH) kubectl patch clusterrole ccm-linode-clusterrole --type='json' \
0 commit comments