Showing with 9 additions and 3 deletions.
  1. +6 −0 CHANGELOG.md
  2. +2 −2 manifests/params.pp
  3. +1 −1 metadata.json
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Version 1.0.2
Hotfix for kubelet downgrading cni in the rhel family

# Version 1.0.1
Support for weave and flannel

Expand All @@ -16,7 +19,9 @@ Officially supported version of puppetlabs-kubernetes

# Version 0.2.0
Supports Kubernetes up to 1.9.x

Adds support for cri-containerd runtime

Provides additional os and runtime switches for Kubetool

# Version 0.1.3
Expand All @@ -30,5 +35,6 @@ Hotfix for kubeproxy

# Version 0.1.0
First release

Supports Kubernetes 1.6 - 1.7.5

4 changes: 2 additions & 2 deletions manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
case $::osfamily {
'Debian' : {
$kubernetes_package_version = '1.7.3-01'
$cni_version = '0.6.0-00'
$cni_version = '0.5.1-01'
}
'RedHat' : {
$kubernetes_package_version = '1.7.3'
$cni_version = '0.6.0'
$cni_version = '0.5.1'
}
default: { notify {"The OS family ${::os_family} is not supported by this module":} }
}
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "puppetlabs-kubernetes",
"version": "1.0.1",
"version": "1.0.2",
"author": "Puppet",
"summary": "The module installs and configures a Kubernetes cluster",
"license": "Apache-2.0",
Expand Down