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"
Top comments (1)
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🤔