{"id":4147,"date":"2019-08-12T17:15:28","date_gmt":"2019-08-12T14:15:28","guid":{"rendered":"http:\/\/www.systemcodegeeks.com\/?p=4147"},"modified":"2019-08-09T15:47:14","modified_gmt":"2019-08-09T12:47:14","slug":"configuring-minishift-use-with-eclipse-che","status":"publish","type":"post","link":"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/","title":{"rendered":"Configuring Minishift for use with Eclipse Che and Red Hat CodeReady Workspaces"},"content":{"rendered":"\n<p>Number 4 in my <a href=\"https:\/\/divby0.blogspot.com\/search\/label\/che\">Che series<\/a>&#8230; a quick guide for using Minishift, in order to test drive <a href=\"https:\/\/www.eclipse.org\/che\/docs\/che-7\/index.html\">Che 7<\/a> or <a href=\"https:\/\/developers.redhat.com\/products\/codeready-workspaces\/download\">Red Hat CodeReady Workspaces<\/a>.<\/p>\n\n\n\n<p>If you&#8217;re not running Windows as your host OS, your mileage may vary in terms of memory requirements and preferred virtual machine driver, but the suggestions below should work on most OSes&#8230; even the one with an incomplete <a href=\"https:\/\/stackoverflow.com\/questions\/4247068\/sed-command-with-i-option-failing-on-mac-but-works-on-linux\">sed implementation<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Get Minishift and oc<\/h2>\n\n\n\n<p>Download and unpack the latest&nbsp;<br><code>minishift<\/code>&nbsp;v1.34.1 binary from here:<\/p>\n\n\n\n<p><a href=\"https:\/\/github.com\/minishift\/minishift\/releases\">https:\/\/github.com\/minishift\/minishift\/releases<\/a><\/p>\n\n\n\n<p>You\u2019ll also want the Openshift Origin Client Tools (<code>oc<\/code>) 4 or 3.11 from:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"https:\/\/mirror.openshift.com\/pub\/openshift-v4\/clients\/ocp\/\">https:\/\/mirror.openshift.com\/pub\/openshift-v4\/clients\/ocp\/<\/a><\/li><li><a href=\"https:\/\/mirror.openshift.com\/pub\/openshift-v3\/clients\/\">https:\/\/mirror.openshift.com\/pub\/openshift-v3\/clients\/<\/a><\/li><\/ul>\n\n\n\n<p>Once downloaded and unpacked, put the\u00a0<code>minishift<\/code>\u00a0and\u00a0<code>oc<\/code>\u00a0executables in your ~\/bin or some other folder that\u2019s on your PATH.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Configure Minishift<\/h2>\n\n\n\n<p>On Windows, I use\u00a0 <a href=\"https:\/\/gitforwindows.org\/\">Git bash shell<\/a> for most shell commands.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:java\"># To prevent rate limiting when starting minishift, use a personal \n# access token.\n# You can create new one at https:\/\/github.com\/settings\/tokens\nexport MINISHIFT_GITHUB_API_TOKEN=\"f00cafebabel33t\"\n\n# Grant enough memory to run CRW 1.2 \/ Che 6 and workspaces\n# 6G min for one workspace, plus 2G for each additional workspace\nminishift config set memory 12G\n\n# Grant enough disk for downloading container images\nminishift config set disk-size 25G\n\n# if not using default virtualization engine, eg., want Virtual Box, use\nminishift config set vm-driver virtualbox\n\n# enable cluster admin user\nminishift addons install --defaults\nminishift addons enable admin-user<\/pre>\n\n\n\n<p>On Windows, you might need to touch a file that your shell can\u2019t find.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:java\">touch \/c\/Users\/YOUR_LOGIN_HERE\/.minishift\/machines\/minishift_kubeconfig<\/pre>\n\n\n\n<table class=\"wp-block-table\"><tbody><tr><td>Note&nbsp; &nbsp; &nbsp;&nbsp;<\/td><td>If it fails with error&nbsp;<code>Checking if requested OpenShift version 'v3.11.0' is valid \u2026\u200b v3.11.0 is not a valid OpenShift versionFAIL<\/code>, try <a href=\"https:\/\/docs.microsoft.com\/en-us\/windows\/wsl\/about\">WSL bash<\/a>.<\/td><\/tr><\/tbody><\/table>\n\n\n\n<pre class=\"wp-block-preformatted brush:java\"># start minishift oc cluster\nminishift start<\/pre>\n\n\n\n<p>Once minishift starts successfully, you\u2019re ready to deploy Che or CRW to the server.<\/p>\n\n\n\n<p>If minishift fails to come up, try killing and starting it again:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:java\">minishift stop\nminishift start<\/pre>\n\n\n\n<p>Or delete it and try again:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:java\">minishift stop\nminishift delete\nminishift start<\/pre>\n\n\n\n<p>When successful, you should see something like this (use your actual IP address in place of\u00a0<code>192.168.$YOUR_IP<\/code>):<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:java\">OpenShift server started.\n\nThe server is accessible via web console at:\n    https:\/\/192.168.$YOUR_IP:8443\/console<\/pre>\n\n\n\n<p>You can log into the above console URL using user =\u00a0<code>system<\/code>\u00a0and password =\u00a0<code>admin<\/code>\u00a0&#8211; full cluster admin privileges required to deploy an operator:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:java\">oc login 192.168.$YOUR_IP:8443 -u system -p admin<\/pre>\n\n\n\n<p>If you prefer to use a different user, you can grant that user cluster admin privileges:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:java\">oc adm policy --as=system:admin add-cluster-role-to-user cluster-admin admin # for admin user\noc adm policy --as=system:admin add-cluster-role-to-user cluster-admin developer # for developer user<\/pre>\n\n\n\n<p>Deploy something!<\/p>\n\n\n\n<p>If you want to install <b>CodeReady Workspaces 1.2<\/b>, download the Operator Installer from here:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"https:\/\/developers.redhat.com\/products\/codeready-workspaces\/download\">https:\/\/developers.redhat.com\/products\/codeready-workspaces\/download<\/a><\/li><\/ul>\n\n\n\n<p>Set up your authentication with the new Red Hat Container Catalog&#8217;s registry, registry.redhat.io:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"https:\/\/access.redhat.com\/RegistryAuthentication#using-authentication-3\">https:\/\/access.redhat.com\/RegistryAuthentication#using-authentication-3<\/a><\/li><\/ul>\n\n\n\n<p>Run the <a href=\"https:\/\/access.redhat.com\/documentation\/en-us\/red_hat_codeready_workspaces\/1.2\/html-single\/administration_guide\/index#installing_codeready-workspaces\">installation<\/a> as follows:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:java\">.\/deploy.sh -d<\/pre>\n\n\n\n<p>Or, if you&#8217;d like to install <b>Che 7<\/b>, see <a href=\"https:\/\/divby0.blogspot.com\/2019\/06\/deploying-che-7-to-minishift-with-chectl.html\">Deploying Che 7 to Minishift<\/a>.<\/p>\n\n\n\n<p>You can also use the built-in Che add-on in Minishift, but that approach is deprecated. Enable it as follows:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted brush:java\">minishift addons enable che; minishift addons apply \\\n  --addon-env CHE_DOCKER_IMAGE=eclipse\/che-server:nightly \\\n  --addon-env OPENSHIFT_TOKEN=$(oc whoami -t) che\n\n# switch to Che 7.0.0.RC3 plugin registry format (fixed in minishift v1.34.1) \n# see https:\/\/github.com\/minishift\/minishift\/commit\/4c0a0c0b9cfb92798fef53e5c54e80ca71c5f715\nminishift --profile che addons apply --addon-env PLUGIN__REGISTRY__URL=https:\/\/che-plugin-registry.openshift.io\/v3 che<\/pre>\n\n\n\n<div class=\"attribution\">\n<table>\n<tbody>\n<tr>\n<td>Published on .System Code Geeks with permission by Nick Boldt , partner at our <a href=\"\/\/www.systemcodegeeks.com\/join-us\/scg\/\" target=\"_blank\" rel=\"noopener noreferrer\">SCG program<\/a>. See the original article here: <a href=\"http:\/\/divby0.blogspot.com\/2019\/07\/configuring-minishift-for-use-with.html\" target=\"_blank\" rel=\"noopener noreferrer\">test<\/a>\n<p>&nbsp;<\/p>\n<p>Opinions expressed by .System Code Geeks contributors are their own.<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Number 4 in my Che series&#8230; a quick guide for using Minishift, in order to test drive Che 7 or Red Hat CodeReady Workspaces. If you&#8217;re not running Windows as your host OS, your mileage may vary in terms of memory requirements and preferred virtual machine driver, but the suggestions below should work on most &hellip;<\/p>\n","protected":false},"author":5237,"featured_media":188,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[39],"tags":[172],"class_list":["post-4147","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-devops","tag-minishift"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Configuring Minishift for use with Eclipse Che and Red Hat CodeReady Workspaces - System Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"Interested to learn about Configuring Minishift? Check our article explaining how to configure Minishift for use with Eclipse Che and Red Hat CodeReady\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Configuring Minishift for use with Eclipse Che and Red Hat CodeReady Workspaces - System Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"Interested to learn about Configuring Minishift? Check our article explaining how to configure Minishift for use with Eclipse Che and Red Hat CodeReady\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/\" \/>\n<meta property=\"og:site_name\" content=\"System Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/systemcodegeeks\" \/>\n<meta property=\"article:published_time\" content=\"2019-08-12T14:15:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/devops-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Nick Boldt\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@systemcodegeeks\" \/>\n<meta name=\"twitter:site\" content=\"@systemcodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Nick Boldt\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/\"},\"author\":{\"name\":\"Nick Boldt\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/f01f4835d64eb6bd4b2b562701150fa9\"},\"headline\":\"Configuring Minishift for use with Eclipse Che and Red Hat CodeReady Workspaces\",\"datePublished\":\"2019-08-12T14:15:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/\"},\"wordCount\":384,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/devops-logo.jpg\",\"keywords\":[\"Minishift\"],\"articleSection\":[\"DevOps\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/\",\"url\":\"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/\",\"name\":\"Configuring Minishift for use with Eclipse Che and Red Hat CodeReady Workspaces - System Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/devops-logo.jpg\",\"datePublished\":\"2019-08-12T14:15:28+00:00\",\"description\":\"Interested to learn about Configuring Minishift? Check our article explaining how to configure Minishift for use with Eclipse Che and Red Hat CodeReady\",\"breadcrumb\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/#primaryimage\",\"url\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/devops-logo.jpg\",\"contentUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/devops-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.systemcodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"DevOps\",\"item\":\"https:\/\/www.systemcodegeeks.com\/category\/devops\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Configuring Minishift for use with Eclipse Che and Red Hat CodeReady Workspaces\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#website\",\"url\":\"https:\/\/www.systemcodegeeks.com\/\",\"name\":\"System Code Geeks\",\"description\":\"Operating System Developers Resource Center\",\"publisher\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.systemcodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/www.systemcodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/systemcodegeeks\",\"https:\/\/x.com\/systemcodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/f01f4835d64eb6bd4b2b562701150fa9\",\"name\":\"Nick Boldt\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/176a8e2b6d533c09c934b3943e51688ef1132bb120508c826e6c73e8043b3e1b?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/176a8e2b6d533c09c934b3943e51688ef1132bb120508c826e6c73e8043b3e1b?s=96&d=mm&r=g\",\"caption\":\"Nick Boldt\"},\"sameAs\":[\"http:\/\/divby0.blogspot.com\/\"],\"url\":\"https:\/\/www.systemcodegeeks.com\/author\/nick-boldt\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Configuring Minishift for use with Eclipse Che and Red Hat CodeReady Workspaces - System Code Geeks - 2026","description":"Interested to learn about Configuring Minishift? Check our article explaining how to configure Minishift for use with Eclipse Che and Red Hat CodeReady","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/","og_locale":"en_US","og_type":"article","og_title":"Configuring Minishift for use with Eclipse Che and Red Hat CodeReady Workspaces - System Code Geeks - 2026","og_description":"Interested to learn about Configuring Minishift? Check our article explaining how to configure Minishift for use with Eclipse Che and Red Hat CodeReady","og_url":"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/","og_site_name":"System Code Geeks","article_publisher":"https:\/\/www.facebook.com\/systemcodegeeks","article_published_time":"2019-08-12T14:15:28+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/devops-logo.jpg","type":"image\/jpeg"}],"author":"Nick Boldt","twitter_card":"summary_large_image","twitter_creator":"@systemcodegeeks","twitter_site":"@systemcodegeeks","twitter_misc":{"Written by":"Nick Boldt","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/#article","isPartOf":{"@id":"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/"},"author":{"name":"Nick Boldt","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/f01f4835d64eb6bd4b2b562701150fa9"},"headline":"Configuring Minishift for use with Eclipse Che and Red Hat CodeReady Workspaces","datePublished":"2019-08-12T14:15:28+00:00","mainEntityOfPage":{"@id":"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/"},"wordCount":384,"commentCount":0,"publisher":{"@id":"https:\/\/www.systemcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/devops-logo.jpg","keywords":["Minishift"],"articleSection":["DevOps"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/","url":"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/","name":"Configuring Minishift for use with Eclipse Che and Red Hat CodeReady Workspaces - System Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.systemcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/#primaryimage"},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/devops-logo.jpg","datePublished":"2019-08-12T14:15:28+00:00","description":"Interested to learn about Configuring Minishift? Check our article explaining how to configure Minishift for use with Eclipse Che and Red Hat CodeReady","breadcrumb":{"@id":"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/#primaryimage","url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/devops-logo.jpg","contentUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/devops-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.systemcodegeeks.com\/devops\/configuring-minishift-use-with-eclipse-che\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.systemcodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"DevOps","item":"https:\/\/www.systemcodegeeks.com\/category\/devops\/"},{"@type":"ListItem","position":3,"name":"Configuring Minishift for use with Eclipse Che and Red Hat CodeReady Workspaces"}]},{"@type":"WebSite","@id":"https:\/\/www.systemcodegeeks.com\/#website","url":"https:\/\/www.systemcodegeeks.com\/","name":"System Code Geeks","description":"Operating System Developers Resource Center","publisher":{"@id":"https:\/\/www.systemcodegeeks.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.systemcodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.systemcodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.systemcodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/systemcodegeeks","https:\/\/x.com\/systemcodegeeks"]},{"@type":"Person","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/f01f4835d64eb6bd4b2b562701150fa9","name":"Nick Boldt","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/176a8e2b6d533c09c934b3943e51688ef1132bb120508c826e6c73e8043b3e1b?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/176a8e2b6d533c09c934b3943e51688ef1132bb120508c826e6c73e8043b3e1b?s=96&d=mm&r=g","caption":"Nick Boldt"},"sameAs":["http:\/\/divby0.blogspot.com\/"],"url":"https:\/\/www.systemcodegeeks.com\/author\/nick-boldt\/"}]}},"_links":{"self":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts\/4147","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/users\/5237"}],"replies":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/comments?post=4147"}],"version-history":[{"count":0,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts\/4147\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/media\/188"}],"wp:attachment":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/media?parent=4147"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/categories?post=4147"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/tags?post=4147"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}