* Install/Setup locally the latest version of Minishift - https://docs.okd.io/latest/minishift/getting-started/index.html * Enable Operators in Minishift (https://docs.okd.io/latest/minishift/command-ref/minishift_addons_install.html)
{code:java} # create a new profile to test the operator $ minishift profile set operator # enable the admin-user add-on $ minishift addon enable admin-user # optionally, configure the VM $ minishift config set cpus 4 $ minishift config set memory 8GB $ minishift config set vm-driver virtualbox # start the instance $ minishift start # login with the admin account $ oc login -u system:admin
{code}
* Install Operator SDK * Getting started Started https://github.com/operator-framework/operator-sdk * Operator Framework following steps Getting Started https://github.com/operator-framework/getting-started |
|