Skip to content

Commit 3ca3275

Browse files
Use Fedora 41 for e2e testing
1 parent fb36f02 commit 3ca3275

File tree

2 files changed

+6
-15
lines changed

2 files changed

+6
-15
lines changed

dependencies.yaml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -66,17 +66,11 @@ dependencies:
6666
match: KUBERNETES_VERSION
6767

6868
- name: e2e-fedora
69-
version: 39
69+
version: 41
7070
refPaths:
7171
- path: hack/ci/Vagrantfile-fedora
7272
match: fedora
7373

74-
- name: e2e-fedora-image-url
75-
version: 39-1.5
76-
refPaths:
77-
- path: hack/ci/Vagrantfile-fedora
78-
match: vm.box_url
79-
8074
- name: e2e-ubuntu
8175
version: ubuntu2204
8276
refPaths:

hack/ci/Vagrantfile-fedora

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,16 @@
33

44
# Vagrant box for testing
55
Vagrant.configure("2") do |config|
6-
config.vm.box = "fedora/39-cloud-base"
7-
config.vm.box_url = "override-by-provider"
6+
config.vm.box = "fedora/41-cloud-base"
87
memory = 8192
98
cpus = 4
109

11-
config.vm.provider :virtualbox do |v, override|
12-
override.vm.box_url = "https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/39/Cloud/x86_64/images/Fedora-Cloud-Base-Vagrant-39-1.5.x86_64.vagrant-virtualbox.box"
13-
v.memory = memory
14-
v.cpus = cpus
10+
config.vm.provider :virtualbox do |v|
11+
v.memory = 8192
12+
v.cpus = 4
1513
end
1614

17-
config.vm.provider :libvirt do |v, override|
18-
override.vm.box_url = "https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/39/Cloud/x86_64/images/Fedora-Cloud-Base-Vagrant-39-1.5.x86_64.vagrant-libvirt.box"
15+
config.vm.provider :libvirt do |v|
1916
v.memory = memory
2017
v.cpus = cpus
2118
end

0 commit comments

Comments
 (0)