Last active
October 4, 2018 20:35
-
-
Save praveenkumar/acecf38969f94d93d945d48a574643ae to your computer and use it in GitHub Desktop.
try out okd 3.11.0 on minishift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Compile oc platform native binary. | |
- git clone https://github.com/openshift/origin.git | |
- cd origin | |
- git checkout release-3.11 | |
- make | |
- Binary will be available in the _output/local/bin/linux/amd64/ (linux) or similar for other platform | |
$ mkdir -p ~/.minishift/cache/oc/v3.11.0/linux/ (or ~/.minishift/cache/oc/v3.11.0/darwin or ~/.minishift/cache/oc/v3.11.0/windows as per platform) | |
$ cp <your compilied oc binary> ~/.minishift/cache/oc/v3.11.0/linux/ (or whatever your platform specific path) | |
$ minishift config set skip-check-openshift-version true | |
$ minishift config set skip-check-openshift-release true | |
$ minishift start --openshift-version 3.11.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment