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

Improved configuration and more in Red Hat CodeReady Workspaces 2.3

August 21, 2020
Parag Dave
Related topics:
Developer ToolsJavaKubernetesSecurity
Related products:
Red Hat OpenShift

Share:

    Based on Eclipse Che, Red Hat CodeReady Workspaces (CRW) is a Red Hat OpenShift-native developer environment that supports cloud-native development. CodeReady Workspaces 2.3 is now available. For this release, we focused on improving CRW's configuration options, updating to the latest versions of IDE plugins, and adding new devfiles.

    CodeReady Workspaces 2.3 is available on:

    • OpenShift 3.11 and OpenShift 4.3 and higher, including OpenShift 4.5.
    • OpenShift Dedicated 4.3, via the add-ons capability.

    Two ways to inject secrets into workspaces

    Starting with CodeReady Workspaces 2.3, you can automatically mount encrypted Kubernetes secrets that contain sensitive information such as user names, passwords, and authentication tokens into workspace containers. To mount these secrets, you have to create them in OpenShift namespaces, where your workspace containers are created. Let us consider the two mechanisms for mounting secrets to their workspaces: mounting secrets as environment variables, and mounting secrets in a file.

    Mounting secrets as environment variables

    The following YAML file contains two secrets, which are associated with the FIRST_ENV_VAR and SECOND_ENV_VAR environment variables. These environment variables are set with the values of myvalue1 and myvalue2, respectively. Once set, the variables will reside inside of a container named maven in all of the workspaces that are created in the same OpenShift namespace as this YAML file:

    apiVersion: v1
    kind: Secret
    metadata:
      name: mvn-settings-secret
      annotations:
        che.eclipse.org/target-container: maven
        che.eclipse.org/mount-as: env
        che.eclipse.org/firstkey_env-name: FIRST_ENV_VAR
        che.eclipse.org/secondkey_env-name: SECOND_ENV_VAR
      labels:
       …
    data:
      firstkey: myvalue1
      secondkey: myvalue2
    

    Mounting secrets in a file

    The next sample file shows a secret that is mounted in a file called settings.xml. The file is available to a container named maven in all of the workspaces that are created in the same OpenShift namespace as this YAML file:

    apiVersion: v1
    kind: Secret
    metadata:
      name: mvn-settings-secret
      labels:
        app.kubernetes.io/part-of: che.eclipse.org
        app.kubernetes.io/component: workspace-secret
      annotations:
        che.eclipse.org/target-container: maven
        che.eclipse.org/mount-path: /home/user/.m2/
        che.eclipse.org/mount-as: file
        che.eclipse.org/automount-workspace-secret: true
    
    data:
      settings.xml: __<base64 encoded data content here>__
    

    OpenShift cluster-wide proxy support

    When you enable OpenShift with a cluster-wide egress proxy, CodeReady Workspaces now automatically honors that proxy for communication across its components and external services.

    Experimental workspace storage setting

    You can now set the CheCluster custom resource configuration property CHE_WORKSPACE_STORAGE_AVAILABLE_TYPES with an experimental value of async. This value provides a blend of ephemeral and persistent storage. It allows for faster I/O and retains workspace changes.

    Improved reliability for terminal connections

    We improved CodeReady Workspaces to prevent failed task execution due to the disposal of terminal connections.

    Devfile updates

    We updated the set of devfiles provided with CodeReady Workspaces for more recent versions of runtime images and stacks.

    Look for a new devfile with Red Hat JBoss Enterprise Application Platform (JBoss EAP) XP 1.0, OpenJDK 11, and Maven 3.5. Wherever possible, we migrated the Java-based devfiles to JDK 11. (JBoss EAP is not included with these unless it is required.) We also updated the commands within devfiles with numbers that reflect the recommended sequence of their execution.

    IDE plugin updates

    We updated various IDE plugins provided with CodeReady Workspaces for their newer versions. Plugins for Java language support, application dependency analytics, project initializer, Quarkus language support, and Sonarlint have all been updated.

    Get CodeReady Workspaces 2.3

    CodeReady Workspaces 2.3 is available now on OpenShift 3.11 and OpenShift 4.x:

    • If you are using OpenShift 3.11, you can find installation instructions here.
    • If you are using OpenShift 4.x, you can install directly from the OpenShift OperatorHub and follow the documentation here.
    • Download the CodeReady Workspaces command-line interface.
    • Check out the CodeReady Workspaces product page.
    Last updated: March 30, 2023

    Recent Posts

    • Migrating Ansible Automation Platform 2.4 to 2.5

    • Multicluster resiliency with global load balancing and mesh federation

    • Simplify local prototyping with Camel JBang infrastructure

    • Smart deployments at scale: Leveraging ApplicationSets and Helm with cluster labels in Red Hat Advanced Cluster Management for Kubernetes

    • How to verify container signatures in disconnected OpenShift

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Products

    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform

    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