Skip to content

Commit

Permalink
Default image location
Browse files Browse the repository at this point in the history
Signed-off-by: Raul Sevilla <[email protected]>
  • Loading branch information
rsevilla87 committed Feb 22, 2024
1 parent abb210f commit 22296c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/k8s/kubernetes.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,11 @@ const clientRole = "client-local"
const clientAcrossRole = "client-across"
const hostNetServerRole = "host-server"
const hostNetClientRole = "host-client"
const k8sNetperfImage = "quay.io/rsevilla/k8s-netperf:latest"
const k8sNetperfImage = "quay.io/cloud-bulldozer/k8s-netperf:latest"

// BuildSUT Build the k8s env to run network performance tests
func BuildSUT(client *kubernetes.Clientset, s *config.PerfScenarios) error {
var netperfDataPorts []int32
// Check if nodes have the zone label to keep the netperf test
// in the same AZ/Zone versus across AZ/Zone
z, zones, err := GetZone(client)
Expand Down Expand Up @@ -191,7 +192,6 @@ func BuildSUT(client *kubernetes.Clientset, s *config.PerfScenarios) error {
}

// Create netperf service
var netperfDataPorts []int32
for i := 0; i < 16; i++ {
netperfDataPorts = append(netperfDataPorts, NetperfServerDataPort+int32(i))
}
Expand Down

0 comments on commit 22296c5

Please sign in to comment.