mirror of
https://github.com/elastic/logstash.git
synced 2025-06-29 02:03:30 -04:00
Logstash Docker images, full and OSS, now use UBI image as its base, replacing the previous Ubuntu base. - change the base image of `full` and `oss` to ubi - Set locale to C.UTF-8 - remove ubi flavour - use go image to build env2yaml - remove redundant and refactor steps - add support to build image in mac aarch64 - allow customizing ELASTIC_VERSION and LOCAL_ARTIFACTS for test purpose
50 lines
1.7 KiB
Ruby
50 lines
1.7 KiB
Ruby
shared_examples_for 'the metadata is set correctly' do |flavor|
|
|
before do
|
|
@image = find_image(flavor)
|
|
@image_config = @image.json['Config']
|
|
@labels = @image_config['Labels']
|
|
end
|
|
|
|
it 'should have the correct working directory' do
|
|
expect(@image_config['WorkingDir']).to eql '/usr/share/logstash'
|
|
end
|
|
|
|
it "should have an architecture of #{running_architecture}" do
|
|
expect(@image.json['Architecture']).to have_correct_architecture
|
|
end
|
|
|
|
%w(license org.label-schema.license org.opencontainers.image.licenses).each do |label|
|
|
it "should set the license label #{label} correctly" do
|
|
expect(@labels[label]).to have_correct_license_label(flavor)
|
|
end
|
|
end
|
|
|
|
%w(name org.label-schema.name org.opencontainers.image.title).each do |label|
|
|
it "should set the name label #{label} correctly" do
|
|
expect(@labels[label]).to eql "logstash"
|
|
end
|
|
end
|
|
|
|
%w(vendor org.opencontainers.image.vendor).each do |label|
|
|
it 'should set the vendor label correctly' do
|
|
expect(@labels["vendor"]).to eql "Elastic"
|
|
end
|
|
end
|
|
|
|
%w(description summary org.opencontainers.image.description).each do |label|
|
|
it "should set the description label #{label} correctly" do
|
|
expect(@labels[label]).to eql "Logstash is a free and open server-side data processing pipeline that ingests data from a multitude of sources, transforms it, and then sends it to your favorite 'stash.'"
|
|
end
|
|
end
|
|
|
|
%w(org.label-schema.version org.opencontainers.image.version).each do |label|
|
|
it "should set the version label #{label} correctly" do
|
|
expect(@labels[label]).to eql qualified_version
|
|
end
|
|
end
|
|
|
|
it 'should set the maintainer label correctly' do
|
|
expect(@labels["maintainer"]).to eql "info@elastic.co"
|
|
end
|
|
|
|
end
|