forked from kubevirt/kubevirt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhotplug.go
211 lines (182 loc) · 7.39 KB
/
hotplug.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
/*
* This file is part of the kubevirt project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Copyright 2023 Red Hat, Inc.
*
*/
package network
import (
"context"
"fmt"
"time"
"kubevirt.io/kubevirt/tests/libmigration"
"k8s.io/apimachinery/pkg/types"
"kubevirt.io/kubevirt/pkg/apimachinery/patch"
"kubevirt.io/kubevirt/pkg/libvmi"
"kubevirt.io/kubevirt/pkg/network/vmispec"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
v1 "kubevirt.io/api/core/v1"
"kubevirt.io/kubevirt/tests/framework/kubevirt"
"kubevirt.io/kubevirt/tests/libvmifact"
)
const (
ifaceName = "iface1"
nadName = "skynet"
vmIfaceName = "eth1"
)
type hotplugMethod string
const (
migrationBased hotplugMethod = "migrationBased"
inPlace hotplugMethod = "inPlace"
)
func verifyDynamicInterfaceChange(vmi *v1.VirtualMachineInstance, plugMethod hotplugMethod, queueCount int32) *v1.VirtualMachineInstance {
if plugMethod == migrationBased {
migrate(vmi)
}
vmi, err := kubevirt.Client().VirtualMachineInstance(vmi.GetNamespace()).Get(context.Background(), vmi.GetName(), metav1.GetOptions{})
ExpectWithOffset(1, err).NotTo(HaveOccurred())
nonAbsentIfaces := vmispec.FilterInterfacesSpec(vmi.Spec.Domain.Devices.Interfaces, func(iface v1.Interface) bool {
return iface.State != v1.InterfaceStateAbsent
})
nonAbsentNets := vmispec.FilterNetworksByInterfaces(vmi.Spec.Networks, nonAbsentIfaces)
var secondaryNetworksNames []string
for _, net := range vmispec.FilterMultusNonDefaultNetworks(nonAbsentNets) {
secondaryNetworksNames = append(secondaryNetworksNames, net.Name)
}
ExpectWithOffset(1, secondaryNetworksNames).NotTo(BeEmpty())
EventuallyWithOffset(1, func() []v1.VirtualMachineInstanceNetworkInterface {
return cleanMACAddressesFromStatus(vmiCurrentInterfaces(vmi.GetNamespace(), vmi.GetName()))
}, 30*time.Second).Should(
ConsistOf(interfaceStatusFromInterfaceNames(queueCount, secondaryNetworksNames...)))
vmi, err = kubevirt.Client().VirtualMachineInstance(vmi.GetNamespace()).Get(context.Background(), vmi.GetName(), metav1.GetOptions{})
ExpectWithOffset(1, err).NotTo(HaveOccurred())
return vmi
}
func waitForSingleHotPlugIfaceOnVMISpec(vmi *v1.VirtualMachineInstance) *v1.VirtualMachineInstance {
EventuallyWithOffset(1, func() []v1.Network {
var err error
vmi, err = kubevirt.Client().VirtualMachineInstance(vmi.GetNamespace()).Get(context.Background(), vmi.GetName(), metav1.GetOptions{})
Expect(err).NotTo(HaveOccurred())
return vmi.Spec.Networks
}, 30*time.Second).Should(
ConsistOf(
*v1.DefaultPodNetwork(),
v1.Network{
Name: ifaceName,
NetworkSource: v1.NetworkSource{Multus: &v1.MultusNetwork{
NetworkName: nadName,
}},
},
))
return vmi
}
func vmiCurrentInterfaces(vmiNamespace, vmiName string) []v1.VirtualMachineInstanceNetworkInterface {
vmi, err := kubevirt.Client().VirtualMachineInstance(vmiNamespace).Get(context.Background(), vmiName, metav1.GetOptions{})
ExpectWithOffset(2, err).NotTo(HaveOccurred())
return secondaryInterfaces(vmi)
}
func secondaryInterfaces(vmi *v1.VirtualMachineInstance) []v1.VirtualMachineInstanceNetworkInterface {
indexedSecondaryNetworks := indexVMsSecondaryNetworks(vmi)
var nonDefaultInterfaces []v1.VirtualMachineInstanceNetworkInterface
for _, iface := range vmi.Status.Interfaces {
if _, isNonDefaultPodNetwork := indexedSecondaryNetworks[iface.Name]; isNonDefaultPodNetwork {
nonDefaultInterfaces = append(nonDefaultInterfaces, iface)
}
}
return nonDefaultInterfaces
}
func indexVMsSecondaryNetworks(vmi *v1.VirtualMachineInstance) map[string]v1.Network {
indexedSecondaryNetworks := map[string]v1.Network{}
for _, network := range vmi.Spec.Networks {
if network.Multus != nil && !network.Multus.Default {
indexedSecondaryNetworks[network.Name] = network
}
}
return indexedSecondaryNetworks
}
func cleanMACAddressesFromStatus(status []v1.VirtualMachineInstanceNetworkInterface) []v1.VirtualMachineInstanceNetworkInterface {
for i := range status {
status[i].MAC = ""
}
return status
}
func interfaceStatusFromInterfaceNames(queueCount int32, ifaceNames ...string) []v1.VirtualMachineInstanceNetworkInterface {
const initialIfacesInVMI = 1
var ifaceStatus []v1.VirtualMachineInstanceNetworkInterface
for i, ifaceName := range ifaceNames {
ifaceStatus = append(ifaceStatus, v1.VirtualMachineInstanceNetworkInterface{
Name: ifaceName,
InterfaceName: fmt.Sprintf("eth%d", i+initialIfacesInVMI),
InfoSource: vmispec.NewInfoSource(
vmispec.InfoSourceDomain, vmispec.InfoSourceGuestAgent, vmispec.InfoSourceMultusStatus),
QueueCount: queueCount,
})
}
return ifaceStatus
}
func newVMWithOneInterface() *v1.VirtualMachine {
vm := libvmi.NewVirtualMachine(libvmifact.NewAlpineWithTestTooling(), libvmi.WithRunning())
vm.Spec.Template.Spec.Networks = []v1.Network{*v1.DefaultPodNetwork()}
vm.Spec.Template.Spec.Domain.Devices.Interfaces = []v1.Interface{*v1.DefaultMasqueradeNetworkInterface()}
return vm
}
func migrate(vmi *v1.VirtualMachineInstance) {
By("migrating the VMI")
migration := libmigration.New(vmi.Name, vmi.Namespace)
migrationUID := libmigration.RunMigrationAndExpectToCompleteWithDefaultTimeout(kubevirt.Client(), migration)
libmigration.ConfirmVMIPostMigration(kubevirt.Client(), vmi, migrationUID)
}
func patchVMWithNewInterface(vm *v1.VirtualMachine, newNetwork v1.Network, newIface v1.Interface) error {
patchData, err := patch.GeneratePatchPayload(
patch.PatchOperation{
Op: patch.PatchTestOp,
Path: "/spec/template/spec/networks",
Value: vm.Spec.Template.Spec.Networks,
},
patch.PatchOperation{
Op: patch.PatchReplaceOp,
Path: "/spec/template/spec/networks",
Value: append(vm.Spec.Template.Spec.Networks, newNetwork),
},
patch.PatchOperation{
Op: patch.PatchTestOp,
Path: "/spec/template/spec/domain/devices/interfaces",
Value: vm.Spec.Template.Spec.Domain.Devices.Interfaces,
},
patch.PatchOperation{
Op: patch.PatchReplaceOp,
Path: "/spec/template/spec/domain/devices/interfaces",
Value: append(vm.Spec.Template.Spec.Domain.Devices.Interfaces, newIface),
},
)
if err != nil {
return err
}
_, err = kubevirt.Client().VirtualMachine(vm.Namespace).Patch(context.Background(), vm.Name, types.JSONPatchType, patchData, metav1.PatchOptions{})
return err
}
func removeInterface(vm *v1.VirtualMachine, name string) error {
specCopy := vm.Spec.Template.Spec.DeepCopy()
ifaceToRemove := vmispec.LookupInterfaceByName(specCopy.Domain.Devices.Interfaces, name)
ifaceToRemove.State = v1.InterfaceStateAbsent
patchData, err := patch.GenerateTestReplacePatch("/spec/template/spec/domain/devices/interfaces", vm.Spec.Template.Spec.Domain.Devices.Interfaces, specCopy.Domain.Devices.Interfaces)
if err != nil {
return err
}
_, err = kubevirt.Client().VirtualMachine(vm.Namespace).Patch(context.Background(), vm.Name, types.JSONPatchType, patchData, metav1.PatchOptions{})
return err
}