Skip to content

Commit 8b7ff69

Browse files
authored
Remove fedora 26, add 28 (#30683)
* Remove fedora 26, add 28 Closes #30579 * Update testing docs with new fedora 28 image
1 parent ff62638 commit 8b7ff69

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

TESTING.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ You can choose which boxes to test by setting the `-Pvagrant.boxes` project prop
379379
the valid options for this property are:
380380

381381
* `sample` - The default, only chooses ubuntu-1404 and centos-7
382-
* List of box names, comma separated (e.g. `oel-7,fedora-26`) - Chooses exactly the boxes listed.
382+
* List of box names, comma separated (e.g. `oel-7,fedora-28`) - Chooses exactly the boxes listed.
383383
* `linux-all` - All linux boxes.
384384
* `windows-all` - All Windows boxes. If there are any Windows boxes which do not
385385
have images available when this value is provided, the build will fail.
@@ -406,8 +406,8 @@ These are the linux flavors supported, all of which we provide images for
406406
* debian-9 aka stretch, the current debian stable distribution
407407
* centos-6
408408
* centos-7
409-
* fedora-26
410409
* fedora-27
410+
* fedora-28
411411
* oel-6 aka Oracle Enterprise Linux 6
412412
* oel-7 aka Oracle Enterprise Linux 7
413413
* sles-12

Vagrantfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,15 +97,15 @@ Vagrant.configure(2) do |config|
9797
rpm_common config, box
9898
end
9999
end
100-
'fedora-26'.tap do |box|
100+
'fedora-27'.tap do |box|
101101
config.vm.define box, define_opts do |config|
102-
config.vm.box = 'elastic/fedora-26-x86_64'
102+
config.vm.box = 'elastic/fedora-27-x86_64'
103103
dnf_common config, box
104104
end
105105
end
106-
'fedora-27'.tap do |box|
106+
'fedora-28'.tap do |box|
107107
config.vm.define box, define_opts do |config|
108-
config.vm.box = 'elastic/fedora-27-x86_64'
108+
config.vm.box = 'elastic/fedora-28-x86_64'
109109
dnf_common config, box
110110
end
111111
end

buildSrc/src/main/groovy/org/elasticsearch/gradle/vagrant/VagrantTestPlugin.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ class VagrantTestPlugin implements Plugin<Project> {
2323
'centos-7',
2424
'debian-8',
2525
'debian-9',
26-
'fedora-26',
2726
'fedora-27',
27+
'fedora-28',
2828
'oel-6',
2929
'oel-7',
3030
'opensuse-42',

0 commit comments

Comments
 (0)