On March 3, 2025, Jira and Confluence support queue/operations will be moved from ServiceNow to Jira Service Management (JSM). Beginning on Mar. 3, raise support requests by visiting the JSM Portal.
= Support for running Che-Code in containers based on Red Hat Universal Base Image 9
Previously, the `Che-Code` editor failed to start in the link:https://catalog.redhat.com/software/containers/search?q=ubi9&p=1[Red Hat Universal Base Image 9]. With this release, this issue is fixed and you can now explicitly reference those images in the `components` section of a devfile:
= Support for running Che-Code in containers based on Red Hat Universal Base Image 9
Previously, the `Che-Code` editor failed to start in the link: https://catalog.redhat.com/software/containers/search?q=ubi9&p=1 [Red Hat Universal Base Image 9]. With this release, this issue is fixed and you can now explicitly reference those images in the `components` section of a devfile:
[source, code]
----
schemaVersion: 2.2.2
metadata:
name: ubi9-minimal-demo
components:
- name: tools
container:
image: registry.access.redhat.com/ubi9-minimal: 9.3-1552@sha256 :582e18f13291d7c686ec4e6e92d20b24c62ae0fc72767c46f30a69b1a6198055
args: ['tail', '-f', '/dev/null']
endpoints:
- exposure: public
name: nodejs
protocol: http
targetPort: 3000
memoryLimit: 2Gi
memoryRequest: 256Mi
mountSources: true
attributes:
controller.devfile.io/merge-contribution: true
----