Skip to content
This repository was archived by the owner on Jun 6, 2019. It is now read-only.

Latest commit

 

History

History
33 lines (23 loc) · 937 Bytes

File metadata and controls

33 lines (23 loc) · 937 Bytes

Install and configure service-catalog

Install Helm into your Kubernetes cluster, and configure it to be able to find service-catalog:

helm init
helm repo add svc-cat https://svc-catalog-charts.storage.googleapis.com

Grant Helm permission to admin your cluster, so it can install service-catalog:

kubectl create clusterrolebinding tiller-cluster-admin \
    --clusterrole=cluster-admin \
    --serviceaccount=kube-system:default

Install service-catalog:

helm install svc-cat/catalog --version 0.1.3 --name catalog --namespace catalog

More detailed instructions for installing service-catalog can be found in the service-catalog github repo here.


Next: Configure the Manifold service broker