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

Containers in the enterprise - Are you ready for this?

August 11, 2015
Matt (Stuempfle) Lyteson
Related topics:
CI/CDContainersDevOps
Related products:
Red Hat Enterprise Linux

    So here's are deal: We've created what we're calling "PaaS-Containers" in our IT production environment. It consists of core technologies like RHEL Atomic Host, Kubernetes, and Docker along with supporting CI/CD components like Jenkins together as part of an offering that supports the end-to-end automated deployments of applications from a code-commit event through automated testing and roll-out through multiple environments (dev, QA, stage, prod). Oh, did I mention that it's also integrated with our enterprise logging and monitoring as well as our change management process and tooling so that we have a complete audit trail?

    Everyone wants to jump on the bandwagon - they see the benefits of rapid deployment, atomicity, enabling business capabilities faster through technology. But as we learned in the 90-day initiative to get it stood up and an existing application deployed on it, all applications aren't ready for containers and some may never be based on their current architecture.

    Here's what we think about the deployment options in an enterprise context that allows us to enable innovation while managing enterprise risk...

    IaaS, PaaS, Containers, OpenShift Enterprise. I'm confused. What should I use?

    In our environment, we offer a number of choices for development teams to deploy applications in addition to traditional virtualization (aka pets). We have IaaS and two flavors of PaaS: one we call PaaS-Containers (running RHEL Atomic, Kubernetes, and Docker with supporting CI/CD components across multiple environments to support our various security contexts); and one built on OpenShift Enterprise (OSE) 2.x that will be upgraded to OSE 3 in the near future (we call this IT OpenShift). This multifaceted approach allows our application teams to innovate rapidly while having full transparency from an enterprise risk and governance perspective.

    So the question that application teams have is: which should I use?

    An easy way to think about what you get with each of these offerings is the intersection of time-to-market against capability and flexibility. IaaS is the most flexible, but takes a bit longer to setup, configure and deploy. PaaS, on the other hand, imposes a number of constraints (like technologies, security contexts, or environmental support), but allows you to move very quickly.

    Infrastructure and Platform Capabilities

    So... Can I use the PaaS-Containers in the IT Environment for my App?

    If an application team does think PaaS Containers offers the right balance to support the business needs, here are four aspects that we ask potential early-adopter application developers to think about to ensure we can support them in our enterprise context.

    PaaS- Containers Candidate Applications

    1. Loosely Coupled or Standalone - the fewer interdependencies you have with other applications or between portions of your application, the easier off you'll be in this environment. Because of the automation and speed, coordination between several teams for concurrent releases becomes impractical. If you are typically coordinating with many other teams to synchronize releases during outage windows, this probably isn't the environment for you right now.
    2. Stateless - with PaaS Containers you will never know which hosts are running your application or even where they are, for that matter. While services can talk to each other within the environment, relying on state mechanisms that assume that the state will be available between requests should be carefully considered.
    3. Employ Standardized Technology - even though you can take a base image of RHEL and layer almost anything on top of it, in the IT environment for PaaS Containers, we have limited the technology stack to what we call Platform Operations "Blessed" images. These are secure images that lay down the necessary enterprise hooks and configuration to ensure a maintainable and secure environment for our applications that can be supported our Platform Operations team. Think of this as ensuring a secure supply chain for images.
    4. Small and Frequent Changes - if you're making large, complex changes to your application every couple of months, this is probably not where you'll want to be. Pushing small changes on a more frequent basis (daily) allows for stability in the business services the application supports. Your application should be able to have the changes tested and validated quickly to make this happen.

    I'm sad - you can't support my application in the container environment. Now what?

    In most cases, starting to make the necessary architectural changes to your application now, will enable you to move quickly - whether to containers or even the next generation of technology. Places to start are:

    • Eliminate hard dependencies through patterns like feature flags and permitting backwards compatibility for service calls (service versioning). You shouldn't care if another application you depend on has a release and they shouldn't care if you have a release. Ditto for database changes as well.
    • Use object-based storage options or externalize your database from the PaaS-Container platform entirely. The fact is that your app will move across virtual hardware in ways that you can't control. Simplify the problem and leverage existing assets where you can.
    • Rely on layer 7 security rather than network-based access controls for the services that you depend on. Due to multiple applications co-existing on PaaS Containers and the reliance on legacy services that won't exist on that platform, tried-and-true network controls for access to assets are insufficient. Change the model so your application has access to what it needs.

    We recognize that everything can't change at once and it will take time to figure out where all of the enterprise applications fit in this context. But, by employing the thought processes and approaches above, we've found simple ways to embrace innovation in a secure enterprise context  without waiting, over engineering, or even changing organization structure.

    Slightly adjusting how we think about the advantages that new technology offers is enabling us to make applications more resilient, more adaptable, and more innovative to drive the business regardless of the underlying technology. Period.

    #guerrilla_ea

    Recent Posts

    • What's new in OpenShift Container Platform system management

    • Claude as your performance analysis partner

    • LogAn: Large-scale log analysis with small language models

    • stalld’s BPF Backend: Breaking Free from debugfs

    • Running AI inference on Rebellions ATOM NPU with Red Hat AI

    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.