Skip to content

Commit 5567104

Browse files
committed
Add NodeJS 22 imagestreams.
See https://access.redhat.com/support/policy/updates/rhel-app-streams-life-cycle#rhel8_application_streams For reference Signed-off-by: Petr "Stone" Hracek <phracek@redhat.com>
1 parent 5b764d2 commit 5567104

File tree

4 files changed

+183
-3
lines changed

4 files changed

+183
-3
lines changed

imagestreams/imagestreams.yaml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
latest: "22-ubi9"
1313
distros:
1414
- name: UBI 8
15-
app_versions: ["20", "20-minimal"]
15+
app_versions: ["20", "20-minimal", "22", "22-minimal"]
1616

1717
- name: UBI 9
1818
app_versions: ["20", "20-minimal", "22", "22-minimal"]
@@ -24,6 +24,9 @@
2424
- name: "20-ubi8-minimal"
2525
distro: UBI 8
2626
app_version: "20-minimal"
27+
- name: "22-ubi8-minimal"
28+
distro: UBI 8
29+
app_version: "22-minimal"
2730
- name: "20-ubi9-minimal"
2831
distro: UBI 9
2932
app_version: "20-minimal"
@@ -38,7 +41,7 @@
3841
latest: "22-ubi9"
3942
distros:
4043
- name: UBI 8
41-
app_versions: ["20", "20-minimal"]
44+
app_versions: ["20", "20-minimal", "22", "22-minimal"]
4245

4346
- name: UBI 9
4447
app_versions: ["20", "20-minimal", "22", "22-minimal"]
@@ -51,6 +54,9 @@
5154
- name: "20-ubi8-minimal"
5255
distro: UBI 8
5356
app_version: "20-minimal"
57+
- name: "22-ubi8-minimal"
58+
distro: UBI 8
59+
app_version: "22-minimal"
5460
- name: "20-ubi9-minimal"
5561
distro: UBI 9
5662
app_version: "20-minimal"
@@ -65,7 +71,7 @@
6571
latest: "22-ubi9"
6672
distros:
6773
- name: UBI 8
68-
app_versions: ["20", "20-minimal"]
74+
app_versions: ["20", "20-minimal", "22", "22-minimal"]
6975

7076
- name: UBI 9
7177
app_versions: ["20", "20-minimal", "22", "22-minimal"]
@@ -77,6 +83,9 @@
7783
- name: "20-ubi8-minimal"
7884
distro: UBI 8
7985
app_version: "20-minimal"
86+
- name: "22-ubi8-minimal"
87+
distro: UBI 8
88+
app_version: "22-minimal"
8089
- name: "20-ubi9-minimal"
8190
distro: UBI 9
8291
app_version: "20-minimal"

imagestreams/nodejs-centos.json

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,44 @@
4747
"type": "Local"
4848
}
4949
},
50+
{
51+
"name": "22-ubi8",
52+
"annotations": {
53+
"openshift.io/display-name": "Node.js 22 (UBI 8)",
54+
"openshift.io/provider-display-name": "Red Hat, Inc.",
55+
"description": "Build and run Node.js 22 applications on UBI 8. For more information about using this builder image, including OpenShift considerations, see https://github.com/sclorg/s2i-nodejs-container/blob/master/22/README.md.",
56+
"iconClass": "icon-nodejs",
57+
"tags": "builder,nodejs",
58+
"version": "22",
59+
"sampleRepo": "https://github.com/sclorg/nodejs-ex.git"
60+
},
61+
"from": {
62+
"kind": "DockerImage",
63+
"name": "registry.access.redhat.com/ubi8/nodejs-22:latest"
64+
},
65+
"referencePolicy": {
66+
"type": "Local"
67+
}
68+
},
69+
{
70+
"name": "22-minimal-ubi8",
71+
"annotations": {
72+
"openshift.io/display-name": "Node.js 22-minimal (UBI 8)",
73+
"openshift.io/provider-display-name": "Red Hat, Inc.",
74+
"description": "Build and run Node.js 22-minimal applications on UBI 8. For more information about using this builder image, including OpenShift considerations, see https://github.com/sclorg/s2i-nodejs-container/blob/master/22-minimal/README.md.",
75+
"iconClass": "icon-nodejs",
76+
"tags": "builder,nodejs",
77+
"version": "22-minimal",
78+
"sampleRepo": "https://github.com/sclorg/nodejs-ex.git"
79+
},
80+
"from": {
81+
"kind": "DockerImage",
82+
"name": "registry.access.redhat.com/ubi8/nodejs-22-minimal:latest"
83+
},
84+
"referencePolicy": {
85+
"type": "Local"
86+
}
87+
},
5088
{
5189
"name": "20-ubi9",
5290
"annotations": {
@@ -180,6 +218,25 @@
180218
"type": "Local"
181219
}
182220
},
221+
{
222+
"name": "22-ubi8-minimal",
223+
"annotations": {
224+
"openshift.io/display-name": "Node.js 22-minimal (UBI 8)",
225+
"openshift.io/provider-display-name": "Red Hat, Inc.",
226+
"description": "Build and run Node.js 22-minimal applications on UBI 8. For more information about using this builder image, including OpenShift considerations, see https://github.com/sclorg/s2i-nodejs-container/blob/master/22-minimal/README.md.",
227+
"iconClass": "icon-nodejs",
228+
"tags": "builder,nodejs",
229+
"version": "22-minimal",
230+
"sampleRepo": "https://github.com/sclorg/nodejs-ex.git"
231+
},
232+
"from": {
233+
"kind": "DockerImage",
234+
"name": "registry.access.redhat.com/ubi8/nodejs-22-minimal:latest"
235+
},
236+
"referencePolicy": {
237+
"type": "Local"
238+
}
239+
},
183240
{
184241
"name": "20-ubi9-minimal",
185242
"annotations": {

imagestreams/nodejs-rhel-aarch64.json

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,44 @@
4747
"type": "Local"
4848
}
4949
},
50+
{
51+
"name": "22-ubi8",
52+
"annotations": {
53+
"openshift.io/display-name": "Node.js 22 (UBI 8)",
54+
"openshift.io/provider-display-name": "Red Hat, Inc.",
55+
"description": "Build and run Node.js 22 applications on UBI 8. For more information about using this builder image, including OpenShift considerations, see https://github.com/sclorg/s2i-nodejs-container/blob/master/22/README.md.",
56+
"iconClass": "icon-nodejs",
57+
"tags": "builder,nodejs",
58+
"version": "22",
59+
"sampleRepo": "https://github.com/sclorg/nodejs-ex.git"
60+
},
61+
"from": {
62+
"kind": "DockerImage",
63+
"name": "registry.redhat.io/ubi8/nodejs-22:latest"
64+
},
65+
"referencePolicy": {
66+
"type": "Local"
67+
}
68+
},
69+
{
70+
"name": "22-minimal-ubi8",
71+
"annotations": {
72+
"openshift.io/display-name": "Node.js 22-minimal (UBI 8)",
73+
"openshift.io/provider-display-name": "Red Hat, Inc.",
74+
"description": "Build and run Node.js 22-minimal applications on UBI 8. For more information about using this builder image, including OpenShift considerations, see https://github.com/sclorg/s2i-nodejs-container/blob/master/22-minimal/README.md.",
75+
"iconClass": "icon-nodejs",
76+
"tags": "builder,nodejs",
77+
"version": "22-minimal",
78+
"sampleRepo": "https://github.com/sclorg/nodejs-ex.git"
79+
},
80+
"from": {
81+
"kind": "DockerImage",
82+
"name": "registry.redhat.io/ubi8/nodejs-22-minimal:latest"
83+
},
84+
"referencePolicy": {
85+
"type": "Local"
86+
}
87+
},
5088
{
5189
"name": "20-ubi9",
5290
"annotations": {
@@ -180,6 +218,25 @@
180218
"type": "Local"
181219
}
182220
},
221+
{
222+
"name": "22-ubi8-minimal",
223+
"annotations": {
224+
"openshift.io/display-name": "Node.js 22-minimal (UBI 8)",
225+
"openshift.io/provider-display-name": "Red Hat, Inc.",
226+
"description": "Build and run Node.js 22-minimal applications on UBI 8. For more information about using this builder image, including OpenShift considerations, see https://github.com/sclorg/s2i-nodejs-container/blob/master/22-minimal/README.md.",
227+
"iconClass": "icon-nodejs",
228+
"tags": "builder,nodejs",
229+
"version": "22-minimal",
230+
"sampleRepo": "https://github.com/sclorg/nodejs-ex.git"
231+
},
232+
"from": {
233+
"kind": "DockerImage",
234+
"name": "registry.redhat.io/ubi8/nodejs-22-minimal:latest"
235+
},
236+
"referencePolicy": {
237+
"type": "Local"
238+
}
239+
},
183240
{
184241
"name": "20-ubi9-minimal",
185242
"annotations": {

imagestreams/nodejs-rhel.json

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,44 @@
4747
"type": "Local"
4848
}
4949
},
50+
{
51+
"name": "22-ubi8",
52+
"annotations": {
53+
"openshift.io/display-name": "Node.js 22 (UBI 8)",
54+
"openshift.io/provider-display-name": "Red Hat, Inc.",
55+
"description": "Build and run Node.js 22 applications on UBI 8. For more information about using this builder image, including OpenShift considerations, see https://github.com/sclorg/s2i-nodejs-container/blob/master/22/README.md.",
56+
"iconClass": "icon-nodejs",
57+
"tags": "builder,nodejs",
58+
"version": "22",
59+
"sampleRepo": "https://github.com/sclorg/nodejs-ex.git"
60+
},
61+
"from": {
62+
"kind": "DockerImage",
63+
"name": "registry.redhat.io/ubi8/nodejs-22:latest"
64+
},
65+
"referencePolicy": {
66+
"type": "Local"
67+
}
68+
},
69+
{
70+
"name": "22-minimal-ubi8",
71+
"annotations": {
72+
"openshift.io/display-name": "Node.js 22-minimal (UBI 8)",
73+
"openshift.io/provider-display-name": "Red Hat, Inc.",
74+
"description": "Build and run Node.js 22-minimal applications on UBI 8. For more information about using this builder image, including OpenShift considerations, see https://github.com/sclorg/s2i-nodejs-container/blob/master/22-minimal/README.md.",
75+
"iconClass": "icon-nodejs",
76+
"tags": "builder,nodejs",
77+
"version": "22-minimal",
78+
"sampleRepo": "https://github.com/sclorg/nodejs-ex.git"
79+
},
80+
"from": {
81+
"kind": "DockerImage",
82+
"name": "registry.redhat.io/ubi8/nodejs-22-minimal:latest"
83+
},
84+
"referencePolicy": {
85+
"type": "Local"
86+
}
87+
},
5088
{
5189
"name": "20-ubi9",
5290
"annotations": {
@@ -180,6 +218,25 @@
180218
"type": "Local"
181219
}
182220
},
221+
{
222+
"name": "22-ubi8-minimal",
223+
"annotations": {
224+
"openshift.io/display-name": "Node.js 22-minimal (UBI 8)",
225+
"openshift.io/provider-display-name": "Red Hat, Inc.",
226+
"description": "Build and run Node.js 22-minimal applications on UBI 8. For more information about using this builder image, including OpenShift considerations, see https://github.com/sclorg/s2i-nodejs-container/blob/master/22-minimal/README.md.",
227+
"iconClass": "icon-nodejs",
228+
"tags": "builder,nodejs",
229+
"version": "22-minimal",
230+
"sampleRepo": "https://github.com/sclorg/nodejs-ex.git"
231+
},
232+
"from": {
233+
"kind": "DockerImage",
234+
"name": "registry.redhat.io/ubi8/nodejs-22-minimal:latest"
235+
},
236+
"referencePolicy": {
237+
"type": "Local"
238+
}
239+
},
183240
{
184241
"name": "20-ubi9-minimal",
185242
"annotations": {

0 commit comments

Comments
 (0)