Skip to main content

Repository Access

To access Kobil chart repository and credentials for the customer, ChartMuseum is being used.

The Kobil Chart repository is currently (Feb 2021) hosted on AWS accessible by URL: https://charts.kobil.com

To install mPower onto a kubernetes platform the mPower helm chart package is required, along with credential set to get access to the Kobil image repository for pulling the Kobil service images.
Here the Kobil Chart repository is hosting the helm chart package (*.tgz archives) covering all helm charts to run helm install command.

To make use of "helm" accessing a remote chart repository(repo), the repo needs to be added before running helm install command action. Find official docu: https://helm.sh/docs/helm/helm_repo_add/

To add the Kobil chart repo make use of the Kobil provided credential-set and do then:

 helm repo add kobil https://charts.kobil.com --username <username> --password <password>  

Once adding the repository to the helm context did work you may find the Kobil repo listed in the "helm repo list" output:

repo-access1

Once helm is able to access the Kobil Chart repo - it is possible to browse the Kobil chart packages.

You can look at it's content as follows / samples:

 helm search repo kobil     

( # to show major releases for all packages)

 helm search repo kobil --devel     

( # to show also devel-packs/archives)

 helm search repo kobil/mpower      

(# to show current (latest) chart packages for mpower)

 helm search repo kobil/mpower --devel -l

(# to show all chart packages for mpower)

You can download chart package or readme by:

helm pull <package>

helm pull kobil/mpower

helm show readme kobil/mpower

(# show the "readme" - which is part of the package too (README.md))

helm pull kobil/mpower --version 7.4.0      

(# download the mpower chart package for release 7.4.0)