Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 992 Bytes

helm-installing-a-helm-chart-on-an-openshift-cluster.adoc

File metadata and controls

46 lines (37 loc) · 992 Bytes

Installing a Helm chart on an {product-title} cluster

Prerequisites
  • You have a running {product-title} cluster and you have logged into it.

  • You have installed Helm.

Procedure
  1. Create a new project:

    $ oc new-project mysql
  2. Add a repository of Helm charts to your local Helm client:

    $ helm repo add stable https://kubernetes-charts.storage.googleapis.com/
    "stable" has been added to your repositories
  3. Update the repository:

    $ helm repo update
  4. Install an example MySQL chart:

    $ helm install example-mysql stable/mysql
  5. Verify that the chart has installed successfully:

    $ helm list
    NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION
    example-mysql mysql 1 2019-12-05 15:06:51.379134163 -0500 EST deployed mysql-1.5.0 5.7.27