Skip to content

Commit 8498d7c

Browse files
committed
fix the debug statement
1 parent d6aa601 commit 8498d7c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,10 +165,10 @@ generate-capl-cluster-manifests:
165165
create-capl-cluster:
166166
# Create a CAPL cluster with updated CCM and wait for it to be ready
167167
kubectl apply -f $(MANIFEST_NAME).yaml
168-
kubectl wait --for=condition=ControlPlaneReady cluster/$(CLUSTER_NAME) --timeout=600s || (kubectl get cluster -o yaml; kubectl get linodecluster -o yaml; kubectl get linodemachines -o yaml)
168+
kubectl wait --for=condition=ControlPlaneReady cluster/$(CLUSTER_NAME) --timeout=600s || (kubectl get cluster -o yaml; kubectl get linodecluster -o yaml; kubectl get linodemachines -o yaml; kubectl logs -n capl-system deployments/capl-controller-manager --tail=50)
169169
kubectl wait --for=condition=NodeHealthy=true machines -l cluster.x-k8s.io/cluster-name=$(CLUSTER_NAME) --timeout=900s
170170
clusterctl get kubeconfig $(CLUSTER_NAME) > $(KUBECONFIG_PATH)
171-
KUBECONFIG=$(KUBECONFIG_PATH) kubectl wait --for=condition=Ready nodes --all --timeout=600s || kubectl logs -n capl-system deployments/capl-controller-manager --tail=50
171+
KUBECONFIG=$(KUBECONFIG_PATH) kubectl wait --for=condition=Ready nodes --all --timeout=600s
172172
# Remove all taints from control plane node so that pods scheduled on it by tests can run (without this, some tests fail)
173173
KUBECONFIG=$(KUBECONFIG_PATH) kubectl taint nodes -l node-role.kubernetes.io/control-plane node-role.kubernetes.io/control-plane-
174174

@@ -208,7 +208,7 @@ e2e-test:
208208
REGION=$(LINODE_REGION) \
209209
LINODE_TOKEN=$(LINODE_TOKEN) \
210210
LINODE_URL=$(LINODE_URL) \
211-
chainsaw test e2e/test --parallel 2 $(E2E_FLAGS)
211+
chainsaw test e2e/test/lb-with-udp-ports-stickiness --parallel 2 $(E2E_FLAGS)
212212

213213
.PHONY: e2e-test-bgp
214214
e2e-test-bgp:

0 commit comments

Comments
 (0)