File tree Expand file tree Collapse file tree 2 files changed +6
-15
lines changed Expand file tree Collapse file tree 2 files changed +6
-15
lines changed Original file line number Diff line number Diff line change @@ -66,17 +66,11 @@ dependencies:
66
66
match : KUBERNETES_VERSION
67
67
68
68
- name : e2e-fedora
69
- version : 39
69
+ version : 41
70
70
refPaths :
71
71
- path : hack/ci/Vagrantfile-fedora
72
72
match : fedora
73
73
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
-
80
74
- name : e2e-ubuntu
81
75
version : ubuntu2204
82
76
refPaths :
Original file line number Diff line number Diff line change 3
3
4
4
# Vagrant box for testing
5
5
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"
8
7
memory = 8192
9
8
cpus = 4
10
9
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
15
13
end
16
14
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 |
19
16
v . memory = memory
20
17
v . cpus = cpus
21
18
end
You can’t perform that action at this time.
0 commit comments