Skip to main content
Redhat Developers  Logo
  • Products

    Platforms

    • Red Hat Enterprise Linux
      Red Hat Enterprise Linux Icon
    • Red Hat AI
      Red Hat AI
    • Red Hat OpenShift
      Openshift icon
    • Red Hat Ansible Automation Platform
      Ansible icon
    • View All Red Hat Products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat Developer Hub
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat OpenShift Local
    • Red Hat Developer Sandbox

      Try Red Hat products and technologies without setup or configuration fees for 30 days with this shared Openshift and Kubernetes cluster.
    • Try at no cost
  • Technologies

    Featured

    • AI/ML
      AI/ML Icon
    • Linux
      Linux Icon
    • Kubernetes
      Cloud icon
    • Automation
      Automation Icon showing arrows moving in a circle around a gear
    • View All Technologies
    • Programming Languages & Frameworks

      • Java
      • Python
      • JavaScript
    • System Design & Architecture

      • Red Hat architecture and design patterns
      • Microservices
      • Event-Driven Architecture
      • Databases
    • Developer Productivity

      • Developer productivity
      • Developer Tools
      • GitOps
    • Automated Data Processing

      • AI/ML
      • Data Science
      • Apache Kafka on Kubernetes
    • Platform Engineering

      • DevOps
      • DevSecOps
      • Ansible automation for applications and services
    • Secure Development & Architectures

      • Security
      • Secure coding
  • Learn

    Featured

    • Kubernetes & Cloud Native
      Openshift icon
    • Linux
      Rhel icon
    • Automation
      Ansible cloud icon
    • AI/ML
      AI/ML Icon
    • View All Learning Resources

    E-Books

    • GitOps Cookbook
    • Podman in Action
    • Kubernetes Operators
    • The Path to GitOps
    • View All E-books

    Cheat Sheets

    • Linux Commands
    • Bash Commands
    • Git
    • systemd Commands
    • View All Cheat Sheets

    Documentation

    • Product Documentation
    • API Catalog
    • Legacy Documentation
  • Developer Sandbox

    Developer Sandbox

    • Access Red Hat’s products and technologies without setup or configuration, and start developing quicker than ever before with our new, no-cost sandbox environments.
    • Explore Developer Sandbox

    Featured Developer Sandbox activities

    • Get started with your Developer Sandbox
    • OpenShift virtualization and application modernization using the Developer Sandbox
    • Explore all Developer Sandbox activities

    Ready to start developing apps?

    • Try at no cost
  • Blog
  • Events
  • Videos

The odo CLI is deprecated: What developers need to know

October 23, 2025
Kathryn Yetter
Related topics:
ContainersDeveloper ToolsIDEsKubernetes
Related products:
Developer ToolsRed Hat OpenShift Dev SpacesPodman DesktopRed Hat OpenShift

Share:

    If you currently use the odo command-line interface (CLI) in your cloud-native development workflow, this post contains important news for you: the odo project is being officially deprecated. Find out what this change means for your Red Hat OpenShift and Kubernetes development workflow and how to transition easily.

    odo: A brief history

    First released in 2019, odo originated as a simple, fast, and developer-focused command-line interface designed to streamline the lifecycle of applications on OpenShift and Kubernetes. Its primary goal was to abstract away complexity, allowing developers to focus purely on coding, building, and deploying without becoming cluster experts. Since its inception, odo has been a valuable part of the OpenShift ecosystem, focusing specifically on the inner-loop—the rapid cycle of development and testing—for our cloud-native users.

    Why is odo being deprecated?

    Odo has low adoption rates and limited community engagement. As the cloud-native landscape continues to evolve, we are planning to focus our resources in other areas.

    Key dates for odo users

    To ensure you have ample time to migrate your workflows, here are the two critical dates for the odo CLI:

    • Immediate deprecation date: October 23, 2025. As of this date, the odo CLI is officially deprecated. We will continue to provide critical security patches and bug fixes, but will no longer be accepting new features or significant bug fixes. The existing Cooperative Community Support model will continue until the end of life date.
    • End of life (EOL) date: March 31, 2026. After March 31, 2026, Red Hat will no longer provide any maintenance, security updates, or technical support for the odo CLI. We strongly urge all users to complete their migration to the recommended alternatives before the EOL date.

    Transition your inner-loop development to OpenShift Dev Spaces

    We recommend that odo users begin to explore alternative tools for their development workflows. The best tool for you will depend on your specific needs and preferences. For inner loop development (the rapid cycle of coding, building, and testing), we recommend Red Hat OpenShift Dev Spaces.

    OpenShift Dev Spaces offers a complete, in-browser IDE experience that is instantly ready for any developer on your team. It uses Devfile and Git to define a shared, consistent workspace configuration, virtually eliminating the "it works on my machine" problem. This transition moves your inner loop from a localized tool to a fully managed, on-cluster development environment designed for consistency, team velocity, and maximum developer productivity. You get a consistent environment across teams and the ability to start coding immediately.

    Map core odo commands for your outer loop with Podman and oc

    For outer loop, consider looking at standard tools like Podman or the oc CLI.

    Your migration involves mapping specific odo use cases to these two purpose-built tools:

    • For local container and image management (building images, running local containers, or managing development-time pods on your machine), consider Podman and Podman Desktop. The Podman CLI offers commands like podman build and podman run to replace local build and deployment, while Podman Desktop provides a visual interface for managing these local resources.
    • For OpenShift cluster interaction (deployment, logging, scaling, or any administrative task directly on the cluster), consider the standard oc CLI. Commands like oc apply -f [resource] and oc logs -f [pod] are your authoritative replacements for managing OpenShift components.

    To give you a starting point for your migration, here are a few common functional mappings.

    odo command functionNew equivalentPurpose
    Component creation (odo init)Use the Devfile RegistryDefine and deploy your application resources using manifests or Devfile.
    Local build (odo build-images)podman buildBuild a container image locally on your machine before pushing to a registry.
    Deployment (odo deploy)podman build, podman push, and oc applyApply your deployment manifest directly to the cluster.
    View resources (odo list)oc get [resource_type], oc describe [resource_type] [resource_name]View all resources or specific resource types on your cluster.

    Get up to speed quickly with our Podman and OpenShift command-line essentials cheat sheets.

    Conclusion

    While odo's service comes to an end on March 31, 2026, we are ready to welcome you to the next generation of developer tooling. Continue your journey with standardized, professional environments in OpenShift Dev Spaces for your inner loop and long-term stability in the Podman and oc CLIs for your core operations.

    Related Posts

    • A developer's guide to using OpenShift with Kubernetes

    • Enable nested containers in OpenShift Dev Spaces with user namespaces

    • Integrate a private AI coding assistant into your CDE using Ollama, Continue, and OpenShift Dev Spaces

    • Learn about OpenShift command-line tools

    • New: Local development with JetBrains IDEs in OpenShift Dev Spaces

    • How to run VS Code with OpenShift Dev Spaces

    Recent Posts

    • The odo CLI is deprecated: What developers need to know

    • Exposing OpenShift networks using BGP

    • Camel integration quarterly digest: Q3 2025

    • How to run I/O workloads on OpenShift Virtualization VMs

    • How spec-driven development improves AI coding quality

    What’s up next?

    Download the OpenShift command-line essentials cheat sheet for developers to discover the most useful commands for working with the oc CLI.

    Get the cheat sheet
    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
    © 2025 Red Hat

    Red Hat legal and privacy links

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

    Report a website issue