Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ibm-eventstreams-dev does not deploy into IBM Cloud Private

I tried to install ibm-eventstreams-dev v 0.1.1 into IBM Cloud Private and i get an error message:

Internal Service Error : Chart Incompatible with Tiller v2.6.0

like image 473
rob9nicholson Avatar asked Jan 29 '23 00:01

rob9nicholson


1 Answers

Background

As the error message says, IBM Event Streams requires Helm (Tiller) v2.7.2 or greater. (see https://github.com/IBM/charts/blob/master/stable/ibm-eventstreams-dev/Chart.yaml#L5 )

IBM Cloud Private (ICP) has come with Helm (Tiller) v2.7.2 out of the box since v 2.1.0.2 so as long as you're on 2.1.0.2 or 2.1.0.3 there is nothing to worry about.

Getting it working

If you're on ICP v2.1.0.1 or earlier, then the best thing to do would be to update to 2.1.0.2 or greater first - as that should be able to install IBM Event Streams.

If you're already on ICP 2.1.0.2+ but the Tiller install has been downgraded to 2.6.0, the easiest thing to do would probably be to restore the Tiller version.

  1. Download and configure the v 2.7.2 Helm CLI by following the "Installing the Helm CLI" instructions that come with ICP
  2. Run helm init --upgrade --tls to upgrade your Tiller install using the ICP version
like image 66
dalelane Avatar answered Mar 03 '23 07:03

dalelane