From 5a95fa97fb7fee688e97b8fd8665267806896b26 Mon Sep 17 00:00:00 2001 From: Wenqi Qiu Date: Sun, 4 Feb 2024 13:33:46 +0800 Subject: [PATCH] debug Signed-off-by: Wenqi Qiu --- test/performance/framework/scale_up.go | 33 -------------------------- 1 file changed, 33 deletions(-) diff --git a/test/performance/framework/scale_up.go b/test/performance/framework/scale_up.go index ab4fbc76363..8b6d6a97bbc 100644 --- a/test/performance/framework/scale_up.go +++ b/test/performance/framework/scale_up.go @@ -128,39 +128,6 @@ var ( Spec: corev1.PodSpec{ Affinity: &RealNodeAffinity, Tolerations: []corev1.Toleration{MasterToleration}, - // volumes: - // - name: host-info - // downwardAPI: - // items: - // - path: "hostname" - // fieldRef: - // fieldPath: spec.nodeName - // - path: "ip" - // fieldRef: - // fieldPath: status.hostIP - Volumes: []corev1.Volume{ - { - Name: "host-info", - VolumeSource: corev1.VolumeSource{ - DownwardAPI: &corev1.DownwardAPIVolumeSource{ - Items: []corev1.DownwardAPIVolumeFile{ - { - Path: "hostname", - FieldRef: &corev1.ObjectFieldSelector{ - FieldPath: "spec.nodeName", - }, - }, - { - Path: "ip", - FieldRef: &corev1.ObjectFieldSelector{ - FieldPath: "status.hostIP", - }, - }, - }, - }, - }, - }, - }, Containers: []corev1.Container{ { Name: ScaleClientContainerName,