1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
require 'spec_helper'
describe 'magnum::capi_helm' do
shared_examples 'magnum::capi_helm' do
context 'with default parameters' do
let :params do
{}
end
it { is_expected.to contain_magnum_config('capi_helm/kubeconfig_file').with_value('<SERVICE DEFAULT>') }
it { is_expected.to contain_magnum_config('capi_helm/namespace_prefix').with_value('<SERVICE DEFAULT>') }
it { is_expected.to contain_magnum_config('capi_helm/helm_chart_repo').with_value('<SERVICE DEFAULT>') }
it { is_expected.to contain_magnum_config('capi_helm/helm_chart_name').with_value('<SERVICE DEFAULT>') }
it { is_expected.to contain_magnum_config('capi_helm/default_helm_chart_version').with_value('<SERVICE DEFAULT>') }
it { is_expected.to contain_magnum_config('capi_helm/minimum_flavor_ram').with_value('<SERVICE DEFAULT>') }
it { is_expected.to contain_magnum_config('capi_helm/minimum_flavor_vcpus').with_value('<SERVICE DEFAULT>') }
it { is_expected.to contain_magnum_config('capi_helm/csi_cinder_default_volume_type').with_value('<SERVICE DEFAULT>') }
it { is_expected.to contain_magnum_config('capi_helm/csi_cinder_reclaim_policy').with_value('<SERVICE DEFAULT>') }
it { is_expected.to contain_magnum_config('capi_helm/csi_cinder_allow_volume_expansion').with_value('<SERVICE DEFAULT>') }
it { is_expected.to contain_magnum_config('capi_helm/csi_cinder_allowed_topologies').with_value('<SERVICE DEFAULT>') }
it { is_expected.to contain_magnum_config('capi_helm/csi_cinder_fstype').with_value('<SERVICE DEFAULT>') }
it { is_expected.to contain_magnum_config('capi_helm/csi_cinder_volume_binding_mode').with_value('<SERVICE DEFAULT>') }
it { is_expected.to contain_magnum_config('capi_helm/csi_cinder_availability_zone').with_value('<SERVICE DEFAULT>') }
it { is_expected.to contain_magnum_config('capi_helm/app_cred_interface_type').with_value('<SERVICE DEFAULT>') }
it { is_expected.to_not contain_file('<SERVICE DEFAULT>') }
end
context 'with specific parameters' do
let :params do
{
:kubeconfig_file => '/tmp/kubeconfig.yaml',
:kubeconfig => { 'setting' => 'blah' },
:kubeconfig_owner => 'anowner',
:kubeconfig_group => 'agroup',
:kubeconfig_mode => '0666',
:namespace_prefix => 'aprefix',
:helm_chart_repo => 'my-chart-repo',
:helm_chart_name => 'my-helm-chart-name',
:default_helm_chart_version => 'v42',
:minimum_flavor_ram => 42,
:minimum_flavor_vcpus => 8,
:csi_cinder_default_volume_type => 'my-cinder-type',
:csi_cinder_reclaim_policy => 'my-cinder-poilicy',
:csi_cinder_allow_volume_expansion => true,
:csi_cinder_allowed_topologies => ['topo1','topo2'],
:csi_cinder_fstype => 'ext3',
:csi_cinder_volume_binding_mode => 'bind-mode',
:csi_cinder_availability_zone => 'cinder-zone',
:app_cred_interface_type => 'app-cred-int-type',
}
end
it { is_expected.to contain_magnum_config('capi_helm/kubeconfig_file').with_value('/tmp/kubeconfig.yaml') }
it { is_expected.to contain_magnum_config('capi_helm/namespace_prefix').with_value('aprefix') }
it { is_expected.to contain_magnum_config('capi_helm/helm_chart_repo').with_value('my-chart-repo') }
it { is_expected.to contain_magnum_config('capi_helm/helm_chart_name').with_value('my-helm-chart-name') }
it { is_expected.to contain_magnum_config('capi_helm/default_helm_chart_version').with_value('v42') }
it { is_expected.to contain_magnum_config('capi_helm/minimum_flavor_ram').with_value(42) }
it { is_expected.to contain_magnum_config('capi_helm/minimum_flavor_vcpus').with_value(8) }
it { is_expected.to contain_magnum_config('capi_helm/csi_cinder_default_volume_type').with_value('my-cinder-type') }
it { is_expected.to contain_magnum_config('capi_helm/csi_cinder_reclaim_policy').with_value('my-cinder-poilicy') }
it { is_expected.to contain_magnum_config('capi_helm/csi_cinder_allow_volume_expansion').with_value(true) }
it { is_expected.to contain_magnum_config('capi_helm/csi_cinder_allowed_topologies').with_value('topo1,topo2') }
it { is_expected.to contain_magnum_config('capi_helm/csi_cinder_fstype').with_value('ext3') }
it { is_expected.to contain_magnum_config('capi_helm/csi_cinder_volume_binding_mode').with_value('bind-mode') }
it { is_expected.to contain_magnum_config('capi_helm/csi_cinder_availability_zone').with_value('cinder-zone') }
it { is_expected.to contain_magnum_config('capi_helm/app_cred_interface_type').with_value('app-cred-int-type') }
it { is_expected.to contain_file('/tmp/kubeconfig.yaml')
.with_owner('anowner')
.with_group('agroup')
.with_mode('0666')
}
end
end
on_supported_os({
:supported_os => OSDefaults.get_supported_os
}).each do |os,facts|
context "on #{os}" do
let (:facts) do
facts.merge!(OSDefaults.get_facts())
end
it_configures 'magnum::capi_helm'
end
end
end
|