From 9e1dac5ff963bb29921dc9400faa3e3932aa2546 Mon Sep 17 00:00:00 2001 From: Al Bailey Date: Thu, 11 Oct 2018 16:18:43 -0500 Subject: [PATCH] Upversion tiller to align with helm 2.11.0 As part of helm upversion from 2.9.0 to 2.11.0 the tiller docker image for 2.11.0 should also be updated to align with it. Story: 2002843 Task: 26751 Depends-On: I5afb5847204c62214689f9e246a4c9c0ddaf02b7 Change-Id: Iba89f89c9689579703354a77cafea33705c3b35d Signed-off-by: Al Bailey --- puppet-manifests/centos/build_srpm.data | 2 +- puppet-manifests/src/modules/platform/manifests/helm.pp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/puppet-manifests/centos/build_srpm.data b/puppet-manifests/centos/build_srpm.data index 45dcaf675b..bd7096c447 100644 --- a/puppet-manifests/centos/build_srpm.data +++ b/puppet-manifests/centos/build_srpm.data @@ -1,2 +1,2 @@ SRC_DIR="src" -TIS_PATCH_VER=67 +TIS_PATCH_VER=68 diff --git a/puppet-manifests/src/modules/platform/manifests/helm.pp b/puppet-manifests/src/modules/platform/manifests/helm.pp index 26d4e81b17..1e41a67846 100644 --- a/puppet-manifests/src/modules/platform/manifests/helm.pp +++ b/puppet-manifests/src/modules/platform/manifests/helm.pp @@ -9,7 +9,7 @@ class platform::helm Class['::platform::kubernetes::master'] -> exec { "load tiller docker image": - command => "docker image pull gcr.io/kubernetes-helm/tiller:v2.9.1", + command => "docker image pull gcr.io/kubernetes-helm/tiller:v2.11.0", logoutput => true, } ->