|
77 | 77 |
|
78 | 78 | var _ = g.Describe("[sig-node] Managed cluster", func() {
|
79 | 79 | defer g.GinkgoRecover()
|
80 |
| - var ( |
81 |
| - oc = exutil.NewCLIWithPodSecurityLevel("managed-cluster-node", psapi.LevelPrivileged).AsAdmin() |
82 |
| - ) |
| 80 | + oc := exutil.NewCLIWithPodSecurityLevel("managed-cluster-node", psapi.LevelPrivileged).AsAdmin() |
83 | 81 |
|
84 | 82 | var staticNodeNames []string
|
85 | 83 | g.It("record the number of nodes at the beginning of the tests [Early]", func() {
|
@@ -202,14 +200,14 @@ func getNumberOfBootsForNode(kubeClient kubernetes.Interface, namespaceName, nod
|
202 | 200 | if err != nil {
|
203 | 201 | return nil, nil, nodeLogs.String(), fmt.Errorf("failed reading pod/logs for list-boots container: --namespace=%v pods/%v: %w", actualPod.Namespace, actualPod.Name, err)
|
204 | 202 | }
|
205 |
| - e2e.Logf("node/%v list-boots %v", nodeName, containerListBootsLogs) |
| 203 | + fmt.Fprintf(nodeLogs, "node/%v list-boots %v\n", nodeName, containerListBootsLogs) |
206 | 204 |
|
207 | 205 | // Fetch container logs with list of recorded reboots
|
208 | 206 | containerRebootsLogs, err := pod.GetPodLogs(ctx, kubeClient, actualPod.Namespace, actualPod.Name, "reboots")
|
209 | 207 | if err != nil {
|
210 | 208 | return nil, nil, nodeLogs.String(), fmt.Errorf("failed reading pod/logs for reboots container: --namespace=%v pods/%v: %w", actualPod.Namespace, actualPod.Name, err)
|
211 | 209 | }
|
212 |
| - e2e.Logf("node/%v reboot-requests %v", nodeName, containerRebootsLogs) |
| 210 | + fmt.Fprintf(nodeLogs, "node/%v reboot-requests %v", nodeName, containerRebootsLogs) |
213 | 211 |
|
214 | 212 | bootInstances, err := parseBootInstances(containerListBootsLogs)
|
215 | 213 | if err != nil {
|
|
0 commit comments