As a bosh release author,
In order to leverage software-defined storage systems such as requested in #87 or longhorn requiring open-iscsi
I need the open-iscsi package to be installed in ubuntu stemcells
This is currently the case in softlayer stemcells but not in bosh-vsphere-esxi-ubuntu-jammy-go_agent (e.g. 1.829)
|
context 'installed by system_softlayer_open_iscsi', { |
|
exclude_on_alicloud: true, |
|
exclude_on_aws: true, |
|
exclude_on_cloudstack: true, |
|
exclude_on_google: true, |
|
exclude_on_vsphere: true, |
|
exclude_on_vcloud: true, |
|
exclude_on_warden: true, |
|
exclude_on_openstack: true, |
|
exclude_on_azure: true, |
|
} do |
|
describe package('open-iscsi') do |
|
it { should be_installed } |
|
end |
|
end |
Bosh releases have to carry the burden of stemcell dependent iscii package compilation. See cloudfoundry/nfs-volume-release#682 and https://github.com/cloudfoundry/nfs-volume-release/commits/develop/packages/nfs-debs/packaging
As a bosh release author,
In order to leverage software-defined storage systems such as requested in #87 or longhorn requiring open-iscsi
I need the open-iscsi package to be installed in ubuntu stemcells
This is currently the case in softlayer stemcells but not in
bosh-vsphere-esxi-ubuntu-jammy-go_agent(e.g. 1.829)bosh-linux-stemcell-builder/bosh-stemcell/spec/stemcells/ubuntu_spec.rb
Lines 256 to 270 in 3bcd52a
Bosh releases have to carry the burden of stemcell dependent iscii package compilation. See cloudfoundry/nfs-volume-release#682 and https://github.com/cloudfoundry/nfs-volume-release/commits/develop/packages/nfs-debs/packaging