Skip to main content
Redhat Developers  Logo
  • AI

    Get started with AI

    • Red Hat AI
      Accelerate the development and deployment of enterprise AI solutions.
    • AI learning hub
      Explore learning materials and tools, organized by task.
    • AI interactive demos
      Click through scenarios with Red Hat AI, including training LLMs and more.
    • AI/ML learning paths
      Expand your OpenShift AI knowledge using these learning resources.
    • AI quickstarts
      Focused AI use cases designed for fast deployment on Red Hat AI platforms.
    • No-cost AI training
      Foundational Red Hat AI training.

    Featured resources

    • OpenShift AI learning
    • Open source AI for developers
    • AI product application development
    • Open source-powered AI/ML for hybrid cloud
    • AI and Node.js cheat sheet

    Red Hat AI Factory with NVIDIA

    • Red Hat AI Factory with NVIDIA is a co-engineered, enterprise-grade AI solution for building, deploying, and managing AI at scale across hybrid cloud environments.
    • Explore the solution
  • Learn

    Self-guided

    • Documentation
      Find answers, get step-by-step guidance, and learn how to use Red Hat products.
    • Learning paths
      Explore curated walkthroughs for common development tasks.
    • Guided learning
      Receive custom learning paths powered by our AI assistant.
    • See all learning

    Hands-on

    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.
    • Interactive labs
      Learn by doing in these hands-on, browser-based experiences.
    • Interactive demos
      Click through product features in these guided tours.

    Browse by topic

    • AI/ML
    • Automation
    • Java
    • Kubernetes
    • Linux
    • See all topics

    Training & certifications

    • Courses and exams
    • Certifications
    • Skills assessments
    • Red Hat Academy
    • Learning subscription
    • Explore training
  • Build

    Get started

    • Red Hat build of Podman Desktop
      A downloadable, local development hub to experiment with our products and builds.
    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.

    Download products

    • Access product downloads to start building and testing right away.
    • Red Hat Enterprise Linux
    • Red Hat AI
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat Developer Toolset

    References

    • E-books
    • Documentation
    • Cheat sheets
    • Architecture center
  • Community

    Get involved

    • Events
    • Live AI events
    • Red Hat Summit
    • Red Hat Accelerators
    • Community discussions

    Follow along

    • Articles & blogs
    • Developer newsletter
    • Videos
    • Github

    Get help

    • Customer service
    • Customer support
    • Regional contacts
    • Find a partner

    Join the Red Hat Developer program

    • Download Red Hat products and project builds, access support documentation, learning content, and more.
    • Explore the benefits

Kubernetes integration and more in odo 2.0

October 6, 2020
Serena Chechile Nichols Steve Speicher
Related topics:
DevOpsJavaKubernetesNode.jsOperatorsPython
Related products:
Red Hat OpenShift

    Odo is a developer-focused command-line interface (CLI) for OpenShift and Kubernetes. This article introduces highlights of the odo 2.0 release, which now integrates with Kubernetes. Additional highlights include the new default deployment method in odo 2.0, which uses devfiles for rapid, iterative development. We've also moved Operator deployment out of experimental mode, so you can easily deploy Operator-backed services from the odo command line.

    Odo 2.0 now works with core Kubernetes!

    Odo 2.0 lets you write, build, and deploy applications entirely on Kubernetes. You can use any compliant Kubernetes cluster, whether it's a hosted cloud provider, a self-managed cluster, or hosted locally with a tool like Minikube.

    Odo's integration with Kubernetes provides a consistent development experience. You can write applications from scratch, iterate the development inner loop, and commit your code to Git, all within the same environment.

    To initiate your Kubernetes installation, install the Kubernetes Operator Lifecycle Manager and etcd. See the etcd installation guide on the Kubernetes Operator Hub.

    Deploy with devfiles in odo 2.0

    This major release establishes devfiles as the default deployment method for odo. Odo still supports Source-to-Image (S2I) deployment for developers who prefer using the --s2i flag from the command line.

    A devfile is a YAML file that is used to define the developer workspace in Eclipse Che. Devfiles have an open format, so we can also use them in odo. Odo's support for devfiles lets developers easily switch between tools, with no additional configuration. Using devfiles also streamlines the process of adding new language support to odoand Eclipse Che. Now, you only need to create a devfile from a template and update.

    See the odo tutorial for a guide to deploying your first devfile in odo.

    A common definition for your developer tools

    With the odo 2.0 release, we have aligned on devfiles as the common definition format for developer workspaces and application lifecycles across Red Hat's developer tooling portfolio. Red Hat CodeReady Workspaces (the productized version of Eclispe Che) currently uses devfiles, and all of the OpenShift IDE extensions leverage odo, bringing iterative development and deployment flows directly to developers. You can try out odo directly or access it using IDE extensions for VS Code, Eclipse Che, and the Eclipse desktop IDE.

    Improved language support

    Adding devfiles as the default deployment method improves language support in odo 2.0. To see the list of currently supported devfile components, open your odo CLI and run:

    $ odo catalog list components
    

    Table 1 shows the currently available odo components, including devfile components.

    Table 1: Odo devfile components
    Name Description Registry
    java-maven Upstream Maven and OpenJDK 11 DefaultDevfileRegistry
    java-openliberty Open Liberty microservice in Java DefaultDevfileRegistry
    java-quarkus Upstream Quarkus with Java+GraalVM DefaultDevfileRegistry
    java-springboot Spring Boot using Java DefaultDevfileRegistry
    nodejs Stack with NodeJS 12 DefaultDevfileRegistry

    Odo's new deployment model is available for Java using Quarkus, Node.js, and early access for Python.

    Sample starters for new projects

    As another advantage of using devfiles, you can now leverage sample starters to scaffold new projects. Simply use the odo create command to provide the name of your devfile component. Odo will pull a cloned local copy of a starter from the associated Git repository. Here's an example:

    $ odo create nodejs --starter
    
    Validation
    
     ✓  Checking devfile existence [22411ns]
    
     ✓  Checking devfile compatibility [22492ns]
    
     ✓  Creating a devfile component from registry: DefaultDevfileRegistry [24341ns]
    
     ✓  Validating devfile component [74471ns]
    
    Starter Project
    
     ✓  Downloading starter project nodejs-starter from https://github.com/odo-devfiles/nodejs-ex.git [479ms]
    
    Please use `odo push` command to create the component with source deployed
    

    Debugging with odo

    With this release, the odo debug command has graduated from tech preview. See the odo tutorial for more about debugging application components with the odo CLI or VS Code.

    Using Operators for installation

    Developers can now deploy Operator-backed services with odo. Operators provide custom resource definitions (CRDs), which you can use to create service instances—also known as custom resources (CRs), or operands. You can then use these instances in your projects and link them to your components.

    Here's an example, using the etcd Operator to deploy an Etcd cluster:

    $ odo catalog list services
    
      Operators available in the cluster
    
      NAME                          CRDs
    
      etcdoperator.v0.9.4           EtcdCluster, EtcdBackup, EtcdRestore
    
    $ odo service create etcdoperator.v0.9.4/EtcdCluster
    

    See the odo tutorial for more about deploying Operator-backed services with odo.

    Last updated: June 30, 2023

    Recent Posts

    • Protect data offloaded to GPU-accelerated environments with OpenShift sandboxed containers

    • Case study: Measuring energy efficiency on the x64 platform

    • How to prevent AI inference stack silent failures

    • Preventing GPU waste: A guide to JIT checkpointing with Kubeflow Trainer on OpenShift AI

    • How to manage TLS certificates used by OpenShift GitOps operator

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Platforms

    • Red Hat AI
    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Build

    • Developer Sandbox
    • Developer tools
    • Interactive tutorials
    • API catalog

    Quicklinks

    • Learning resources
    • E-books
    • Cheat sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site status dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit
    © 2026 Red Hat

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Chat Support

    Please log in with your Red Hat account to access chat support.