Skip to content

Commit 27fef07

Browse files
mkuznyetsovSDawley
authored andcommitted
replace rhel-8 with rhel-9 references
Signed-off-by: Mykhailo Kuznietsov <[email protected]>
1 parent b9cd0a7 commit 27fef07

33 files changed

+108
-108
lines changed

.github/workflows/plugin-registry-build.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ name: Plugin Registry - Build
1212
on:
1313
push:
1414
branches:
15-
- devspaces-3-rhel-8
15+
- devspaces-3-rhel-9
1616
paths:
1717
- 'dependencies/che-plugin-registry/**'
1818

.github/workflows/update-vsix-versions.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ jobs:
5555
git push origin new-extension-version-branch
5656
5757
# Create a pull request
58-
gh pr create --title "chore: Auto-generated PR to update extnesions versions" --body "This pull request was automatically generated by GitHub Actions" --base devspaces-3-rhel-8
58+
gh pr create --title "chore: Auto-generated PR to update extnesions versions" --body "This pull request was automatically generated by GitHub Actions" --base devspaces-3-rhel-9

README.adoc

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ Because these services are internal, in the interest of making all things open,
44

55
## What's inside?
66

7-
NOTE: the so-called master branch is deprecated and is no longer kept up to date. Instead, the latest nightly sources are in **devspaces-3-rhel-8 branch**, synced to upstream projects' main (or master) branches.
7+
NOTE: the so-called master branch is deprecated and is no longer kept up to date. Instead, the latest nightly sources are in **devspaces-3-rhel-9 branch**, synced to upstream projects' main (or master) branches.
88

9-
For the latest stable release, see the **devspaces-3.y-rhel-8** branch with the largest y value.
9+
For the latest stable release, see the **devspaces-3.y-rhel-9** branch with the largest y value.
1010

1111
---
1212

13-
This repository no longer hosts the OpenShift Dev Spaces Server assembly that mainly inherits Eclipse Che artifacts and repackages some of them. Server has moved to link:https://github.com/redhat-developer/devspaces-images/blob/devspaces-3-rhel-8/devspaces-server/README.adoc#how-to-build-locally[devspaces-images/devspaces-server].
13+
This repository no longer hosts the OpenShift Dev Spaces Server assembly that mainly inherits Eclipse Che artifacts and repackages some of them. Server has moved to link:https://github.com/redhat-developer/devspaces-images/blob/devspaces-3-rhel-9/devspaces-server/README.adoc#how-to-build-locally[devspaces-images/devspaces-server].
1414

1515
### How to Build DS Containers Using casc Jenkins (REQUIRES VPN)
1616

@@ -29,9 +29,9 @@ Folders under link:dependencies[/dependencies] are synced to https://github.com/
2929

3030
The sync logic is in one of three places:
3131

32-
* a Jenkins job - eg., link:https://github.com/redhat-developer/devspaces-images/blob/devspaces-3-rhel-8/crw-jenkins/jobs/DS_CI/dashboard_3.x.jenkinsfile[dashboard_3.x.jenkinsfile],
33-
* a get-sources.sh script - eg., link:https://github.com/redhat-developer/devspaces-images/blob/devspaces-3-rhel-8/devspaces-dashboard/get-sources.sh[dashboard get-sources.sh], or
34-
* a sync-*.sh script - eg., link:https://github.com/redhat-developer/devspaces-images/blob/devspaces-3-rhel-8/devspaces-dashboard/build/scripts/sync.sh[dashboard/scripts/sync.sh].
32+
* a Jenkins job - eg., link:https://github.com/redhat-developer/devspaces-images/blob/devspaces-3-rhel-9/crw-jenkins/jobs/DS_CI/dashboard_3.x.jenkinsfile[dashboard_3.x.jenkinsfile],
33+
* a get-sources.sh script - eg., link:https://github.com/redhat-developer/devspaces-images/blob/devspaces-3-rhel-9/devspaces-dashboard/get-sources.sh[dashboard get-sources.sh], or
34+
* a sync-*.sh script - eg., link:https://github.com/redhat-developer/devspaces-images/blob/devspaces-3-rhel-9/devspaces-dashboard/build/scripts/sync.sh[dashboard/scripts/sync.sh].
3535

3636
Note over time we're trying to move all sync logic out of Jenkinsfiles and into scripts that can be run locally, so during outages build process can still be orchestrated. Goal is to have Jenkins simply call sync.sh scripts to perform syncs, and get-sources.sh scripts to collect assets from Jenkins (or other places) in order to commit those source tarballs + trigger Brew builds.
3737

dependencies/LATEST_IMAGES.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ fi
5151

5252
# try to compute branches from currently checked out branch; else fall back to hard coded value
5353
DWNSTM_BRANCH="$(git rev-parse --abbrev-ref HEAD 2>/dev/null || true)"
54-
if [[ $DWNSTM_BRANCH != "devspaces-3."*"-rhel-8" ]] && [[ $DWNSTM_BRANCH != "devspaces-3-rhel-8" ]]; then
55-
DWNSTM_BRANCH="devspaces-${VERSION}-rhel-8"
54+
if [[ $DWNSTM_BRANCH != "devspaces-3."*"-rhel-9" ]] && [[ $DWNSTM_BRANCH != "devspaces-3-rhel-9" ]]; then
55+
DWNSTM_BRANCH="devspaces-${VERSION}-rhel-9"
5656
fi
5757

5858
# STEP 1 :: regenerate image tag list in LATEST_IMAGES

dependencies/che-plugin-registry/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ Luckily there is an automatic way to build and publish .vsix files and their sou
1111
## Plugin Registry Build Process
1212
The DS plugin registry is a fork of the upstream [Che plugin registry](https://github.com/eclipse-che/che-plugin-registry). While the build logic to build the actual registry is very similar to upstream, the steps required to actually build + publish the DS plugin registry images is quite different.
1313

14-
To build the devfile registry for use with a specific Dev Spaces 3.yy version, it is necessary to check out the appropriate `devspaces-3.yy-rhel-8` branch. This will ensure the build contains the correct tags and references to the images. The `devspaces-3-rhel-8` branch is for the upcoming 3.next release.
14+
To build the devfile registry for use with a specific Dev Spaces 3.yy version, it is necessary to check out the appropriate `devspaces-3.yy-rhel-9` branch. This will ensure the build contains the correct tags and references to the images. The `devspaces-3-rhel-9` branch is for the upcoming 3.next release.
1515

1616
### Local DS Plugin Registry Build Process
1717
A local build works just like upstream -- use the `build.sh` script. The only difference in DS is that the resulting devfile.yaml files generated by the build process are zipped up into a .tar.gz file and copied into the container. This differs from upstream which just copies the output folder directly.
1818
The default `OpenVSX` version used is `che-openvsx`, which will be built from https://github.com/che-incubator/che-openvsx.git at a tag defined in the [job-config.json](../job-config.json). To override this version use the `--che-openvsx-url` parameter in `build.sh` to set a URL where alternative `OpenVSX` sources can be downloaded. The URL must point to a file named `che-openvsx.tar.gz`.
1919

2020
### DS Plugin Registry Build/Publish
2121
All contributions to the DS plugin registry should land in this repository. From there on, the following things happen:
22-
1. Code in this repository is synchronized from this repo to the [plugin registry directory in the devspaces-images repository](https://github.com/redhat-developer/devspaces-images/tree/devspaces-3-rhel-8/devspaces-pluginregistry) by a [Jenkins job](https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/DS_CI/job/pluginregistry_3.x).
23-
2. The job from step `1.` kicks off a subsequent [Jenkins job](https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/DS_CI/job/sync-to-downstream_2.x) that then runs the bootstrap build, which uses the sync'd code in [devspaces-images repository](https://github.com/redhat-developer/devspaces-images/tree/devspaces-3-rhel-8/devspaces-pluginregistry). The boostrap build builds the plugin registry in offline mode, using tagged image references. The resulting binaries and meta.yaml files are placed in a .tar.gz archive and the archive is committed to rhpkg for later usage in Brew.
24-
3. If step `2.` is successful then a Brew build is kicked off. The Brew build copies the generated content in the .tar.gz archive from step `2.` into the [Dockerfile](https://github.com/redhat-developer/devspaces/blob/devspaces-3-rhel-8/dependencies/che-plugin-registry/build/dockerfiles/Dockerfile) and completes the last stages of the plugin registry build.
22+
1. Code in this repository is synchronized from this repo to the [plugin registry directory in the devspaces-images repository](https://github.com/redhat-developer/devspaces-images/tree/devspaces-3-rhel-9/devspaces-pluginregistry) by a [Jenkins job](https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/DS_CI/job/pluginregistry_3.x).
23+
2. The job from step `1.` kicks off a subsequent [Jenkins job](https://main-jenkins-csb-crwqe.apps.ocp-c1.prod.psi.redhat.com/job/DS_CI/job/sync-to-downstream_2.x) that then runs the bootstrap build, which uses the sync'd code in [devspaces-images repository](https://github.com/redhat-developer/devspaces-images/tree/devspaces-3-rhel-9/devspaces-pluginregistry). The boostrap build builds the plugin registry in offline mode, using tagged image references. The resulting binaries and meta.yaml files are placed in a .tar.gz archive and the archive is committed to rhpkg for later usage in Brew.
24+
3. If step `2.` is successful then a Brew build is kicked off. The Brew build copies the generated content in the .tar.gz archive from step `2.` into the [Dockerfile](https://github.com/redhat-developer/devspaces/blob/devspaces-3-rhel-9/dependencies/che-plugin-registry/build/dockerfiles/Dockerfile) and completes the last stages of the plugin registry build.
2525

2626
## Building and Publishing Third Party Binaries for Plugin Registry Sidecar Containers
2727

@@ -33,8 +33,8 @@ Sidecar image sources are then synced from the [devspaces-images](https://github
3333

3434
For example, the udi sidecar:
3535

36-
* [devspaces-images/devspaces-udi](https://github.com/redhat-developer/devspaces-images/tree/devspaces-3-rhel-8/devspacesudi)
37-
* [containers/devspaces-udi](https://pkgs.devel.redhat.com/cgit/containers/devspaces-udi/tree/sources?h=devspaces-3-rhel-8)
36+
* [devspaces-images/devspaces-udi](https://github.com/redhat-developer/devspaces-images/tree/devspaces-3-rhel-9/devspacesudi)
37+
* [containers/devspaces-udi](https://pkgs.devel.redhat.com/cgit/containers/devspaces-udi/tree/sources?h=devspaces-3-rhel-9)
3838

3939
## License
4040

dependencies/che-plugin-registry/build.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@ prepareOpenvsxPackagingAsset() {
151151
fi
152152

153153
SCRIPT_BRANCH="$(git rev-parse --abbrev-ref HEAD 2>/dev/null || true)"
154-
if [[ $SCRIPT_BRANCH != "devspaces-3."*"-rhel-8" ]]; then
155-
SCRIPT_BRANCH="devspaces-3-rhel-8"
154+
if [[ $SCRIPT_BRANCH != "devspaces-3."*"-rhel-9" ]]; then
155+
SCRIPT_BRANCH="devspaces-3-rhel-9"
156156
fi
157157

158158
# save current branch name to the temporary file
@@ -219,8 +219,8 @@ else
219219
# try to compute branches from currently checked out branch; else fall back to hard coded value
220220
# where to find redhat-developer/devspaces/${SCRIPTS_BRANCH}/product/getLatestImageTags.sh
221221
SCRIPTS_BRANCH="$(git rev-parse --abbrev-ref HEAD 2>/dev/null || true)"
222-
if [[ $SCRIPTS_BRANCH != "devspaces-3."*"-rhel-8" ]]; then
223-
SCRIPTS_BRANCH="devspaces-3-rhel-8"
222+
if [[ $SCRIPTS_BRANCH != "devspaces-3."*"-rhel-9" ]]; then
223+
SCRIPTS_BRANCH="devspaces-3-rhel-9"
224224
fi
225225
echo "Load https://raw.githubusercontent.com/redhat-developer/devspaces/${SCRIPTS_BRANCH}/dependencies/job-config.json [3]"
226226
curl -sSLo /tmp/job-config.json https://raw.githubusercontent.com/redhat-developer/devspaces/${SCRIPTS_BRANCH}/dependencies/job-config.json

dependencies/che-plugin-registry/build/dockerfiles/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ RUN \
130130
chgrp -R 0 /var/lib/pgsql /var/lib/pgsql/15 /var/lib/pgsql/data /var/lib/pgsql/backups && \
131131
mv /var/lib/pgsql/15/data/database /var/lib/pgsql/15/data/old
132132

133-
ARG DS_BRANCH=devspaces-3-rhel-8
133+
ARG DS_BRANCH=devspaces-3-rhel-9
134134
ENV DS_BRANCH=${DS_BRANCH}
135135

136136
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]

dependencies/che-plugin-registry/build/dockerfiles/rhel.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ RUN \
134134
chgrp -R 0 /var/lib/pgsql /var/lib/pgsql/15 /var/lib/pgsql/data /var/lib/pgsql/backups && \
135135
mv /var/lib/pgsql/15/data/database /var/lib/pgsql/15/data/old
136136

137-
ARG DS_BRANCH=devspaces-3-rhel-8
137+
ARG DS_BRANCH=devspaces-3-rhel-9
138138
ENV DS_BRANCH=${DS_BRANCH}
139139

140140
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]

dependencies/che-plugin-registry/build/scripts/download_vsix.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ set -o pipefail
88
openvsxJson="/openvsx-server/openvsx-sync.json"
99

1010
usage() {
11-
echo "Usage: $0 -b devspaces-3.y-rhel-8 -j /path/to/openvsx-sync.json --no-download
11+
echo "Usage: $0 -b devspaces-3.y-rhel-9 -j /path/to/openvsx-sync.json --no-download
1212
1313
All arguments are optional.
1414

dependencies/job-config.json

+12-12
Original file line numberDiff line numberDiff line change
@@ -192,22 +192,22 @@
192192
},
193193
"3.18": {
194194
"upstream_branch": [
195-
"devspaces-3.18-rhel-8",
196-
"devspaces-3.18-rhel-8"
195+
"devspaces-3.18-rhel-9",
196+
"devspaces-3.18-rhel-9"
197197
],
198198
"disabled": false
199199
},
200200
"3.19": {
201201
"upstream_branch": [
202-
"devspaces-3.19-rhel-8",
203-
"devspaces-3.19-rhel-8"
202+
"devspaces-3.19-rhel-9",
203+
"devspaces-3.19-rhel-9"
204204
],
205205
"disabled": false
206206
},
207207
"3.x": {
208208
"upstream_branch": [
209-
"devspaces-3-rhel-8",
210-
"devspaces-3-rhel-8"
209+
"devspaces-3-rhel-9",
210+
"devspaces-3-rhel-9"
211211
],
212212
"disabled": false
213213
}
@@ -296,22 +296,22 @@
296296
},
297297
"3.18": {
298298
"upstream_branch": [
299-
"devspaces-3.18-rhel-8",
300-
"devspaces-3.18-rhel-8"
299+
"devspaces-3.18-rhel-9",
300+
"devspaces-3.18-rhel-9"
301301
],
302302
"disabled": false
303303
},
304304
"3.19": {
305305
"upstream_branch": [
306-
"devspaces-3.19-rhel-8",
307-
"devspaces-3.19-rhel-8"
306+
"devspaces-3.19-rhel-9",
307+
"devspaces-3.19-rhel-9"
308308
],
309309
"disabled": false
310310
},
311311
"3.x": {
312312
"upstream_branch": [
313-
"devspaces-3-rhel-8",
314-
"devspaces-3-rhel-8"
313+
"devspaces-3-rhel-9",
314+
"devspaces-3-rhel-9"
315315
],
316316
"disabled": false
317317
}

product/branding/README.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ Branding is currently in two places.
88

99
### Dashboard
1010

11-
To reskin link:https://github.com/eclipse-che/che-dashboard[Che Dashboard], see link:https://github.com/redhat-developer/devspaces-images/tree/devspaces-3-rhel-8/devspaces-dashboard/README.adoc[dashboard].
11+
To reskin link:https://github.com/eclipse-che/che-dashboard[Che Dashboard], see link:https://github.com/redhat-developer/devspaces-images/tree/devspaces-3-rhel-9/devspaces-dashboard/README.adoc[dashboard].
1212

1313
### Microsoft Visual Studio Code - Open Source IDE
1414

15-
To reskin link:https://github.com/che-incubator/che-code/[che-code], which is built from link:https://github.com/microsoft/vscode[Microsoft Visual Studio Code - Open Source IDE], see https://github.com/redhat-developer/devspaces-images/tree/devspaces-3-rhel-8/devspaces-code/branding[devspaces-images/devspaces-code/branding].
15+
To reskin link:https://github.com/che-incubator/che-code/[che-code], which is built from link:https://github.com/microsoft/vscode[Microsoft Visual Studio Code - Open Source IDE], see https://github.com/redhat-developer/devspaces-images/tree/devspaces-3-rhel-9/devspaces-code/branding[devspaces-images/devspaces-code/branding].
1616

product/buildAllInBrewCopyToQuay.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
# where to find redhat-developer/devspaces/${DWNSTM_BRANCH}/product/getLatestImageTags.sh
1313
DS_VERSION="3.y"
1414
DWNSTM_BRANCH="$(git rev-parse --abbrev-ref HEAD 2>/dev/null || true)"
15-
if [[ $DWNSTM_BRANCH != "devspaces-3."*"-rhel-8" ]]; then
16-
DWNSTM_BRANCH="devspaces-3-rhel-8"
15+
if [[ $DWNSTM_BRANCH != "devspaces-3."*"-rhel-9" ]]; then
16+
DWNSTM_BRANCH="devspaces-3-rhel-9"
1717
else
18-
DS_VERSION=${DWNSTM_BRANCH/devspaces-/}; DS_VERSION=${DS_VERSION/-rhel-8/}
18+
DS_VERSION=${DWNSTM_BRANCH/devspaces-/}; DS_VERSION=${DS_VERSION/-rhel-9/}
1919
fi
2020

2121
SCRIPT=$(readlink -f "$0"); SCRIPTPATH=$(dirname "$SCRIPT")
@@ -32,7 +32,7 @@ Example: $0 -t ${DS_VERSION} --sources /path/to/pkgs.devel/projects/
3232
}
3333

3434
latestNext="--latest"
35-
if [[ ${DWNSTM_BRANCH} == "devspaces-3-rhel-8" ]]; then latestNext="--next"; fi
35+
if [[ ${DWNSTM_BRANCH} == "devspaces-3-rhel-9" ]]; then latestNext="--next"; fi
3636

3737
PHASES="1 2"
3838
while [[ "$#" -gt 0 ]]; do

product/buildInBrewCopyToQuay.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
# where to find redhat-developer/devspaces/${DWNSTM_BRANCH}/product/getLatestImageTags.sh
1313
DS_VERSION="3.y"
1414
DWNSTM_BRANCH="$(git rev-parse --abbrev-ref HEAD 2>/dev/null || true)"
15-
if [[ $DWNSTM_BRANCH != "devspaces-3."*"-rhel-8" ]]; then
16-
DWNSTM_BRANCH="devspaces-3-rhel-8"
15+
if [[ $DWNSTM_BRANCH != "devspaces-3."*"-rhel-9" ]]; then
16+
DWNSTM_BRANCH="devspaces-3-rhel-9"
1717
else
18-
DS_VERSION=${DWNSTM_BRANCH/devspaces-/}; DS_VERSION=${DS_VERSION/-rhel-8/}
18+
DS_VERSION=${DWNSTM_BRANCH/devspaces-/}; DS_VERSION=${DS_VERSION/-rhel-9/}
1919
fi
2020
BUILD_DIR=$(pwd)
2121
SCRIPT=$(readlink -f "$0"); SCRIPTPATH=$(dirname "$SCRIPT")
@@ -37,7 +37,7 @@ Options:
3737
}
3838

3939
latestNext="latest"
40-
if [[ ${DWNSTM_BRANCH} == "devspaces-3-rhel-8" ]]; then latestNext="next"; fi
40+
if [[ ${DWNSTM_BRANCH} == "devspaces-3-rhel-9" ]]; then latestNext="next"; fi
4141

4242
pullAssets=0
4343
while [[ "$#" -gt 0 ]]; do

product/bumpDockerfileVersions.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
usage() {
66
echo "
77
Usage: $0 -b SOURCE_BRANCH -v CSV_VERSION
8-
Example: $0 -b devspaces-3-rhel-8 -v 3.yy
8+
Example: $0 -b devspaces-3-rhel-9 -v 3.yy
99
"
1010
exit
1111
}

product/checkImagesInCSV.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ if [[ -f dependencies/job-config.json ]]; then
3131
jcjson=dependencies/job-config.json
3232
else
3333
jcjson=/tmp/job-config.json
34-
curl -sSLo $jcjson https://raw.githubusercontent.com/redhat-developer/devspaces/devspaces-3-rhel-8/dependencies/job-config.json
34+
curl -sSLo $jcjson https://raw.githubusercontent.com/redhat-developer/devspaces/devspaces-3-rhel-9/dependencies/job-config.json
3535
fi
3636
PROD_VER=$(jq -r '.Version' $jcjson)
3737
# cleanup /tmp files
@@ -61,7 +61,7 @@ To compare latest image in Quay to latest CSV in bundle in latest IIB:
6161
TAG=$PROD_VER; \\
6262
IMG=devspaces/dashboard-rhel8; \\
6363
IMG=devspaces/pluginregistry-rhel8; \\
64-
img_quay=\$(${SCRIPTPATH}/getLatestImageTags.sh -b devspaces-\${TAG}-rhel-8 --quay --tag \"\${TAG}-\" -c \${IMG}); echo \$img_quay; \\
64+
img_quay=\$(${SCRIPTPATH}/getLatestImageTags.sh -b devspaces-\${TAG}-rhel-9 --quay --tag \"\${TAG}-\" -c \${IMG}); echo \$img_quay; \\
6565
img_iib=\$(${SCRIPTPATH}/checkImagesInCSV.sh --ds -t \${TAG} -o 4.12 -y -qq -i \${IMG}); echo \$img_iib; \\
6666
if [[ \$img_quay != \$img_iib ]]; then \\
6767
${SCRIPTPATH}/checkImagesInCSV.sh --ds -t \${TAG} -o 4.12 -y -i \${IMG}; \\
@@ -117,7 +117,7 @@ for imageAndTag in $IMAGES; do
117117
# echo "Found containerTag = ${containerTag}"
118118

119119
if [[ ! -x ${SCRIPTPATH}/containerExtract.sh ]]; then
120-
curl -sSLO https://raw.githubusercontent.com/redhat-developer/devspaces/devspaces-3-rhel-8/product/containerExtract.sh
120+
curl -sSLO https://raw.githubusercontent.com/redhat-developer/devspaces/devspaces-3-rhel-9/product/containerExtract.sh
121121
chmod +x containerExtract.sh
122122
fi
123123
rm -fr /tmp/${SOURCE_CONTAINER//\//-}-${containerTag}-*/

product/collectBuildInfo.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Options:
3333
-h, --help Show this help
3434
3535
Example - collect metadata for the current builds in
36-
https://github.com/redhat-developer/devspaces/blob/devspaces-3-rhel-8/dependencies/LATEST_IMAGES_COMMITS:
36+
https://github.com/redhat-developer/devspaces/blob/devspaces-3-rhel-9/dependencies/LATEST_IMAGES_COMMITS:
3737
3838
for d in \$(cat /path/to/LATEST_IMAGES_COMMITS | grep Build | sed -r -e "s@.+buildID=@@"); do \\
3939
$0 -b \$d --append -f /tmp/collectBuildInfo.yml --csv /tmp/collectBuildInfo.csv ; \\

0 commit comments

Comments
 (0)