DEV Community

Enda
Enda

Posted on

3 2

How to enable OpenShift service catalog components in Minishift

Original post: https://endaphelan.me/guides/openshift/how-to-enable-openshift-components-in-minishift

Note: This only works with OpenShift version >= 3.10.x

There are two ways to enable OpenShift service catalog components in Minishift.

The recommended method is to run the minishift openshift component add command when your cluster is already running:

$ minishift openshift component add service-catalog
$ minishift openshift component add automation-service-broker
$ minishift openshift component add template-service-broker

You can also enable components during minishift start. This is still one of Minishift's experimental features, so you will need to set the environment variable MINISHIFT_ENABLE_EXPERIMENTAL in order for it to work:

$ export MINISHIFT_ENABLE_EXPERIMENTAL=y

Then run minishift start with extra flags to enable catalog components:

$ minishift start --extra-clusterup-flags "--enable=*,service-catalog,automation-service-broker,template-service-broker"

AWS Security LIVE!

Join us for AWS Security LIVE!

Discover the future of cloud security. Tune in live for trends, tips, and solutions from AWS and AWS Partners.

Learn More

Top comments (1)

Collapse
 
simbo1905 profile image
Simon Massey

Nice. Do you think it would be easy for me to create a catalogue entry for a continuous deployment tool. I wrote a post at dev.to/simbo1905/git-driven-deploy... about how we run our tool. Until I came across this post I had not thought about whether I could package our tool onto the catalog🤔

AWS Security LIVE!

Join us for AWS Security LIVE!

Discover the future of cloud security. Tune in live for trends, tips, and solutions from AWS and AWS Partners.

Learn More

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay