{"id":4340,"date":"2018-12-31T14:14:41","date_gmt":"2018-12-31T14:14:41","guid":{"rendered":"http:\/\/howk.de\/w1\/blog-announcing-kubeflow-0-1\/"},"modified":"2018-12-31T14:14:41","modified_gmt":"2018-12-31T14:14:41","slug":"blog-announcing-kubeflow-0-1","status":"publish","type":"post","link":"https:\/\/howk.de\/?p=4340","title":{"rendered":"Blog: Announcing Kubeflow 0.1"},"content":{"rendered":"<h1 id=\"since-last-we-met\">Since Last We Met<\/h1>\n<p>Since the <a href=\"https:\/\/kubernetes.io\/blog\/2017\/12\/introducing-kubeflow-composable\" target=\"_blank\">initial announcement<\/a> of Kubeflow at <a href=\"https:\/\/kccncna17.sched.com\/event\/CU5v\/hot-dogs-or-not-at-scale-with-kubernetes-i-vish-kannan-david-aronchick-google\" target=\"_blank\">the last KubeCon+CloudNativeCon<\/a>, we have been both surprised and delighted by the excitement for building great ML stacks for Kubernetes. In just over five months, the <a href=\"https:\/\/github.com\/kubeflow\" target=\"_blank\">Kubeflow project<\/a> now has:<\/p>\n<ul>\n<li>70+ contributors<\/li>\n<li>20+ contributing organizations<\/li>\n<li>15 repositories<\/li>\n<li>3100+ GitHub stars<\/li>\n<li>700+ commits<\/li>\n<\/ul>\n<p>and already is among the top 2% of GitHub projects <strong><em>ever<\/em><\/strong>.<\/p>\n<p>People are excited to chat about Kubeflow as well! The Kubeflow community has also held meetups, talks and public sessions all around the world with thousands of attendees. With all this help, we\u2019ve started to make substantial in every step of ML, from building your first model all the way to building a production-ready, high-scale deployments. At the end of the day, our mission remains the same: we want to let data scientists and software engineers focus on the things they do well by giving them an easy-to-use, portable and scalable ML stack.<\/p>\n<h1 id=\"introducing-kubeflow-0-1\">Introducing Kubeflow 0.1<\/h1>\n<p>Today, we\u2019re proud to announce the availability of Kubeflow 0.1, which provides a minimal set of packages to begin developing, training and deploying ML. In just a few commands, you can get:<\/p>\n<ul>\n<li><strong>Jupyter Hub<\/strong> &#8211; for collaborative &amp; interactive training<\/li>\n<li>A <strong>TensorFlow Training Controller<\/strong> with native distributed training<\/li>\n<li>A <strong>TensorFlow Serving<\/strong> for hosting<\/li>\n<li><strong>Argo<\/strong> for workflows<\/li>\n<li><strong>SeldonCore<\/strong> for complex inference and non TF models<\/li>\n<li><strong>Ambassador<\/strong> for Reverse Proxy<\/li>\n<li>Wiring to make it work on any Kubernetes anywhere<\/li>\n<\/ul>\n<p>To get started, it\u2019s just as easy as it always has been:<\/p>\n<pre><code># Create a namespace for kubeflow deployment\nNAMESPACE=kubeflow\nkubectl create namespace ${NAMESPACE}\nVERSION=v0.1.3\n\n# Initialize a ksonnet app. Set the namespace for it's default environment.\nAPP_NAME=my-kubeflow\nks init ${APP_NAME}\ncd ${APP_NAME}\nks env set default --namespace ${NAMESPACE}\n\n# Install Kubeflow components\nks registry add kubeflow github.com\/kubeflow\/kubeflow\/tree\/${VERSION}\/kubeflow\nks pkg install kubeflow\/core@${VERSION}\nks pkg install kubeflow\/tf-serving@${VERSION}\nks pkg install kubeflow\/tf-job@${VERSION}\n\n# Create templates for core components\nks generate kubeflow-core kubeflow-core\n\n# Deploy Kubeflow\nks apply default -c kubeflow-core\n<\/code><\/pre>\n<p>And thats it! JupyterHub is deployed so we can now use Jupyter to begin developing models. Once we have python code to build our model we can build a docker image and train our model using our TFJob operator by running commands like the following:<\/p>\n<pre><code>ks generate tf-job my-tf-job --name=my-tf-job --image=gcr.io\/my\/image:latest\nks apply default -c my-tf-job\n\nWe could then deploy the model by doing\n\nks generate tf-serving ${MODEL_COMPONENT} --name=${MODEL_NAME}\nks param set ${MODEL_COMPONENT} modelPath ${MODEL_PATH}\nks apply ${ENV} -c ${MODEL_COMPONENT}\n<\/code><\/pre>\n<p>Within just a few commands, data scientists and software engineers can now create even complicated ML solutions and focus on what they do best: answering business critical questions.<\/p>\n<h1 id=\"community-contributions\">Community Contributions<\/h1>\n<p>It\u2019d be impossible to have gotten where we are without enormous help from everyone in the community. Some specific contributions that we want to highlight include:<\/p>\n<ul>\n<li><a href=\"https:\/\/github.com\/kubeflow\/kubeflow\/tree\/master\/kubeflow\/argo\" target=\"_blank\">Argo<\/a> for managing ML workflows<\/li>\n<li><a href=\"https:\/\/github.com\/kubeflow\/caffe2-operator\" target=\"_blank\">Caffe2 Operator<\/a> for running Caffe2 jobs<\/li>\n<li><a href=\"https:\/\/github.com\/kubeflow\/kubeflow\/tree\/master\/kubeflow\/openmpi\" target=\"_blank\">Horovod &amp; OpenMPI<\/a> for improved distributed training performance of TensorFlow<\/li>\n<li><a href=\"https:\/\/github.com\/kubeflow\/kubeflow\/blob\/master\/docs\/gke\/iap.md\" target=\"_blank\">Identity Aware Proxy<\/a>, which enables using security your services with identities, rather than VPNs and Firewalls<\/li>\n<li><a href=\"https:\/\/github.com\/kubeflow\/katib\" target=\"_blank\">Katib<\/a> for hyperparameter tuning<\/li>\n<li><a href=\"https:\/\/github.com\/kubeflow\/experimental-kvc\" target=\"_blank\">Kubernetes volume controller<\/a> which provides basic volume and data management using volumes and volume sources in a Kubernetes cluster.<\/li>\n<li><a href=\"https:\/\/github.com\/kubeflow\/kubebench\" target=\"_blank\">Kubebench<\/a> for benchmarking of HW and ML stacks<\/li>\n<li><a href=\"https:\/\/github.com\/kubeflow\/kubeflow\/tree\/master\/kubeflow\/pachyderm\" target=\"_blank\">Pachyderm<\/a> for managing complex data pipelines<\/li>\n<li><a href=\"https:\/\/github.com\/kubeflow\/pytorch-operator\" target=\"_blank\">PyTorch operator<\/a> for running PyTorch jobs<\/li>\n<li><a href=\"https:\/\/github.com\/kubeflow\/kubeflow\/tree\/master\/kubeflow\/seldon\" target=\"_blank\">Seldon Core<\/a> for running complex model deployments and non-TensorFlow serving<\/li>\n<\/ul>\n<p>It\u2019s difficult to overstate how much the community has helped bring all these projects (and more) to fruition. Just a few of the contributing companies include: Alibaba Cloud, Ant Financial, Caicloud, Canonical, Cisco, Datawire, Dell, Github, Google, Heptio, Huawei, Intel, Microsoft, Momenta, One Convergence, Pachyderm, Project Jupyter, Red Hat, Seldon, Uber and Weaveworks.<\/p>\n<h1 id=\"learning-more\">Learning More<\/h1>\n<p>If you\u2019d like to try out Kubeflow, we have a number of options for you:<\/p>\n<ol>\n<li>You can use sample walkthroughs hosted on <a href=\"https:\/\/www.katacoda.com\/kubeflow\" target=\"_blank\">Katacoda<\/a><\/li>\n<li>You can follow a guided tutorial with existing models from the <a href=\"https:\/\/github.com\/kubeflow\/examples\" target=\"_blank\">examples repository<\/a>. These include the <a href=\"https:\/\/github.com\/kubeflow\/examples\/tree\/master\/github_issue_summarization\" target=\"_blank\">Github Issue Summarization<\/a>, <a href=\"https:\/\/github.com\/kubeflow\/examples\/tree\/master\/mnist\" target=\"_blank\">MNIST<\/a> and <a href=\"https:\/\/github.com\/kubeflow\/examples\/tree\/master\/agents\" target=\"_blank\">Reinforcement Learning with Agents<\/a>.<\/li>\n<li>You can start a cluster on your own and try your own model. Any Kubernetes conformant cluster will support Kubeflow including those from contributors <a href=\"https:\/\/www.prnewswire.com\/news-releases\/caicloud-releases-its-kubernetes-based-cluster-as-a-service-product-claas-20-and-the-first-tensorflow-as-a-service-taas-11-while-closing-6m-series-a-funding-300418071.html\" target=\"_blank\">Caicloud<\/a>, <a href=\"https:\/\/jujucharms.com\/canonical-kubernetes\/\" target=\"_blank\">Canonical<\/a>, <a href=\"https:\/\/cloud.google.com\/kubernetes-engine\/docs\/how-to\/creating-a-container-cluster\" target=\"_blank\">Google<\/a>, <a href=\"https:\/\/heptio.com\/products\/kubernetes-subscription\/\" target=\"_blank\">Heptio<\/a>, <a href=\"https:\/\/github.com\/mesosphere\/dcos-kubernetes-quickstart\" target=\"_blank\">Mesosphere<\/a>, <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/aks\/kubernetes-walkthrough\" target=\"_blank\">Microsoft<\/a>, <a href=\"https:\/\/console.bluemix.net\/docs\/containers\/cs_tutorials.html#cs_cluster_tutorial\" target=\"_blank\">IBM<\/a>, <a href=\"https:\/\/docs.openshift.com\/container-platform\/3.3\/install_config\/install\/quick_install.html#install-config-install-quick-install\" target=\"_blank\">Red Hat\/Openshift <\/a>and <a href=\"https:\/\/www.weave.works\/product\/cloud\/\" target=\"_blank\">Weaveworks<\/a>.<\/li>\n<\/ol>\n<p>There were also a number of sessions at KubeCon + CloudNativeCon  EU 2018 covering Kubeflow. The links to the talks are here; the associated videos will be posted in the coming days.<\/p>\n<ul>\n<li>\n<p>Wednesday, May 2:<\/p>\n<ul>\n<li><a href=\"http:\/\/sched.co\/Drmt\" target=\"_blank\">Kubeflow Intro &#8211; Micha\u0142 Jastrz\u0119bski &amp; Ala Raddaoui, Intel<\/a><\/li>\n<\/ul>\n<\/li>\n<li>\n<p>Thursday, May 3:<\/p>\n<ul>\n<li><a href=\"http:\/\/sched.co\/Drnd\" target=\"_blank\">Kubeflow Deep Dive &#8211; Jeremy Lewi, Google<\/a><\/li>\n<li><a href=\"http:\/\/sched.co\/Dquu\" target=\"_blank\">Write Once, Train &amp; Predict Everywhere: Portable ML Stacks with Kubeflow &#8211; Jeremy Lewi, Google &amp; Stephan Fabel, Canonical<\/a><\/li>\n<li><a href=\"http:\/\/sched.co\/DqvC\" target=\"_blank\">Compliant Data Management and Machine Learning on Kubernetes &#8211; Daniel Whitenack, Pachyderm<\/a><\/li>\n<li><a href=\"https:\/\/kccnceu18.sched.com\/event\/E46y\/bringing-your-data-pipeline-into-the-machine-learning-era-chris-gaun-jorg-schad-mesosphere-intermediate-skill-level\" target=\"_blank\">Bringing Your Data Pipeline into The Machine Learning Era &#8211; Chris Gaun &amp; J\u00f6rg Schad, Mesosphere<\/a><\/li>\n<\/ul>\n<\/li>\n<li>\n<p>Friday, May 4:<\/p>\n<ul>\n<li><a href=\"http:\/\/sched.co\/Duoq\" target=\"_blank\">Keynote: Kubeflow ML on Kubernetes &#8211; David Aronchick &amp; Vishnu Kannan, Google<\/a><\/li>\n<li><a href=\"http:\/\/sched.co\/Dqv6\" target=\"_blank\">Conquering a Kubeflow Kubernetes Cluster with ksonnet, Ark, and Sonobuoy &#8211; Kris Nova, Heptio &amp; David Aronchick, Google<\/a><\/li>\n<li><a href=\"http:\/\/sched.co\/Dqvw\" target=\"_blank\">Serving ML Models at Scale with Seldon and Kubeflow &#8211; Clive Cox, Seldon.io<\/a><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<h1 id=\"what-s-next\">What\u2019s Next?<\/h1>\n<p>Our next major release will be 0.2 coming this summer. In it, we expect to land the following new features:<\/p>\n<ul>\n<li>Simplified setup via a bootstrap container<\/li>\n<li>Improved accelerator integration<\/li>\n<li>Support for more ML frameworks, e.g., Spark ML, XGBoost, sklearn<\/li>\n<li>Autoscaled TF Serving<\/li>\n<li>Programmatic data transforms, e.g., tf.transform<\/li>\n<\/ul>\n<p>But the most important feature is the one we haven\u2019t heard yet. Please tell us! Some options for making your voice heard include:<\/p>\n<ul>\n<li>The <a href=\"https:\/\/join.slack.com\/t\/kubeflow\/shared_invite\/enQtMjgyMzMxNDgyMTQ5LWUwMTIxNmZlZTk2NGU0MmFiNDE4YWJiMzFiOGNkZGZjZmRlNTExNmUwMmQ2NzMwYzk5YzQxOWQyODBlZGY2OTg\" target=\"_blank\">Kubeflow Slack channel<\/a><\/li>\n<li>The <a href=\"https:\/\/groups.google.com\/forum\/#!forum\/kubeflow-discuss\" target=\"_blank\">Kubeflow-discuss<\/a> email list<\/li>\n<li>The <a href=\"http:\/\/twitter.com\/kubeflow\" target=\"_blank\">Kubeflow twitter<\/a> account<\/li>\n<li>Our <a href=\"https:\/\/github.com\/kubeflow\/community\" target=\"_blank\">weekly community meeting<\/a><\/li>\n<li>Please download and run <a href=\"https:\/\/github.com\/kubeflow\/kubeflow\/pull\/330\/files\" target=\"_blank\">kubeflow<\/a>, and submit bugs!<\/li>\n<\/ul>\n<p>Thank you for all your support so far!<br \/>\n<em>Jeremy Lewi &amp; David Aronchick<\/em> Google<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Since Last We Met Since the initial announcement of Kubeflow at the last KubeCon+CloudNativeCon, we have been both surprised and delighted by the excitement for building great ML stacks for Kubernetes. In just over five months, the Kubeflow project now has: 70+ contributors 20+ contributing organizations 15 repositories 3100+ GitHub stars 700+ commits and already [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.9.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Blog: Announcing Kubeflow 0.1 - Howk IT-Dienstleistungen<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/howk.de\/?p=4340\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Blog: Announcing Kubeflow 0.1 - Howk IT-Dienstleistungen\" \/>\n<meta property=\"og:description\" content=\"Since Last We Met Since the initial announcement of Kubeflow at the last KubeCon+CloudNativeCon, we have been both surprised and delighted by the excitement for building great ML stacks for Kubernetes. In just over five months, the Kubeflow project now has: 70+ contributors 20+ contributing organizations 15 repositories 3100+ GitHub stars 700+ commits and already [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/howk.de\/?p=4340\" \/>\n<meta property=\"og:site_name\" content=\"Howk IT-Dienstleistungen\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/howk.de\" \/>\n<meta property=\"article:published_time\" content=\"2018-12-31T14:14:41+00:00\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/howk.de\/?p=4340#article\",\"isPartOf\":{\"@id\":\"https:\/\/howk.de\/?p=4340\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/howk.de\/#\/schema\/person\/b029bd02d4f35dce869ef54c81a100c5\"},\"headline\":\"Blog: Announcing Kubeflow 0.1\",\"datePublished\":\"2018-12-31T14:14:41+00:00\",\"dateModified\":\"2018-12-31T14:14:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/howk.de\/?p=4340\"},\"wordCount\":840,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/howk.de\/#organization\"},\"articleSection\":[\"Hi Tech\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/howk.de\/?p=4340#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/howk.de\/?p=4340\",\"url\":\"https:\/\/howk.de\/?p=4340\",\"name\":\"Blog: Announcing Kubeflow 0.1 - Howk IT-Dienstleistungen\",\"isPartOf\":{\"@id\":\"https:\/\/howk.de\/#website\"},\"datePublished\":\"2018-12-31T14:14:41+00:00\",\"dateModified\":\"2018-12-31T14:14:41+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/howk.de\/?p=4340#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/howk.de\/?p=4340\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/howk.de\/?p=4340#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/howk.de\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog: Announcing Kubeflow 0.1\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/howk.de\/#website\",\"url\":\"https:\/\/howk.de\/\",\"name\":\"Howk IT-Dienstleistungen\",\"description\":\"Howk IT Services - Howk IT-Dienstleistungen\",\"publisher\":{\"@id\":\"https:\/\/howk.de\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/howk.de\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/howk.de\/#organization\",\"name\":\"HowK\",\"url\":\"https:\/\/howk.de\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/howk.de\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/howk.de\/w1\/wp-content\/uploads\/2013\/12\/howk-logo.png\",\"contentUrl\":\"https:\/\/howk.de\/w1\/wp-content\/uploads\/2013\/12\/howk-logo.png\",\"width\":170,\"height\":170,\"caption\":\"HowK\"},\"image\":{\"@id\":\"https:\/\/howk.de\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/howk.de\",\"http:\/\/de.linkedin.com\/in\/howkde\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/howk.de\/#\/schema\/person\/b029bd02d4f35dce869ef54c81a100c5\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/howk.de\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b5a20f4d07bca1b73f25cff58a1116c4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b5a20f4d07bca1b73f25cff58a1116c4?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\/\/howk.de\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Blog: Announcing Kubeflow 0.1 - Howk IT-Dienstleistungen","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:\/\/howk.de\/?p=4340","og_locale":"en_US","og_type":"article","og_title":"Blog: Announcing Kubeflow 0.1 - Howk IT-Dienstleistungen","og_description":"Since Last We Met Since the initial announcement of Kubeflow at the last KubeCon+CloudNativeCon, we have been both surprised and delighted by the excitement for building great ML stacks for Kubernetes. In just over five months, the Kubeflow project now has: 70+ contributors 20+ contributing organizations 15 repositories 3100+ GitHub stars 700+ commits and already [&hellip;]","og_url":"https:\/\/howk.de\/?p=4340","og_site_name":"Howk IT-Dienstleistungen","article_publisher":"https:\/\/www.facebook.com\/howk.de","article_published_time":"2018-12-31T14:14:41+00:00","author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/howk.de\/?p=4340#article","isPartOf":{"@id":"https:\/\/howk.de\/?p=4340"},"author":{"name":"admin","@id":"https:\/\/howk.de\/#\/schema\/person\/b029bd02d4f35dce869ef54c81a100c5"},"headline":"Blog: Announcing Kubeflow 0.1","datePublished":"2018-12-31T14:14:41+00:00","dateModified":"2018-12-31T14:14:41+00:00","mainEntityOfPage":{"@id":"https:\/\/howk.de\/?p=4340"},"wordCount":840,"commentCount":0,"publisher":{"@id":"https:\/\/howk.de\/#organization"},"articleSection":["Hi Tech"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/howk.de\/?p=4340#respond"]}]},{"@type":"WebPage","@id":"https:\/\/howk.de\/?p=4340","url":"https:\/\/howk.de\/?p=4340","name":"Blog: Announcing Kubeflow 0.1 - Howk IT-Dienstleistungen","isPartOf":{"@id":"https:\/\/howk.de\/#website"},"datePublished":"2018-12-31T14:14:41+00:00","dateModified":"2018-12-31T14:14:41+00:00","breadcrumb":{"@id":"https:\/\/howk.de\/?p=4340#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/howk.de\/?p=4340"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/howk.de\/?p=4340#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/howk.de\/"},{"@type":"ListItem","position":2,"name":"Blog: Announcing Kubeflow 0.1"}]},{"@type":"WebSite","@id":"https:\/\/howk.de\/#website","url":"https:\/\/howk.de\/","name":"Howk IT-Dienstleistungen","description":"Howk IT Services - Howk IT-Dienstleistungen","publisher":{"@id":"https:\/\/howk.de\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/howk.de\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/howk.de\/#organization","name":"HowK","url":"https:\/\/howk.de\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/howk.de\/#\/schema\/logo\/image\/","url":"https:\/\/howk.de\/w1\/wp-content\/uploads\/2013\/12\/howk-logo.png","contentUrl":"https:\/\/howk.de\/w1\/wp-content\/uploads\/2013\/12\/howk-logo.png","width":170,"height":170,"caption":"HowK"},"image":{"@id":"https:\/\/howk.de\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/howk.de","http:\/\/de.linkedin.com\/in\/howkde"]},{"@type":"Person","@id":"https:\/\/howk.de\/#\/schema\/person\/b029bd02d4f35dce869ef54c81a100c5","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/howk.de\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b5a20f4d07bca1b73f25cff58a1116c4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b5a20f4d07bca1b73f25cff58a1116c4?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/howk.de\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/howk.de\/index.php?rest_route=\/wp\/v2\/posts\/4340"}],"collection":[{"href":"https:\/\/howk.de\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/howk.de\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/howk.de\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/howk.de\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=4340"}],"version-history":[{"count":0,"href":"https:\/\/howk.de\/index.php?rest_route=\/wp\/v2\/posts\/4340\/revisions"}],"wp:attachment":[{"href":"https:\/\/howk.de\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4340"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/howk.de\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=4340"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/howk.de\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=4340"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}