We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fe5d286 + b2e3c1c commit 699e0bdCopy full SHA for 699e0bd
manifests/packages.pp
@@ -37,6 +37,10 @@
37
38
default: { notify {"The OS family ${::os_family} is not supported by this module":} }
39
}
40
+
41
+ package { 'kubernetes-cni':
42
+ ensure => $cni_version,
43
+ }
44
45
46
elsif $container_runtime == 'cri_containerd' {
spec/classes/packages_spec.rb
@@ -14,5 +14,6 @@
14
it { should contain_package('docker-engine').with_ensure('1.12.0-0~xenial')}
15
it { should contain_package('kubelet').with_ensure('1.7.3-01')}
16
it { should contain_package('kubectl').with_ensure('1.7.3-01')}
17
+ it { should contain_package('kubernetes-cni').with_ensure('0.5.1-00')}
18
end
19
0 commit comments