-
Notifications
You must be signed in to change notification settings - Fork 324
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(ITs): support JBoss ITs with GitHub secrets (#3469)
- Loading branch information
Showing
9 changed files
with
164 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
registry.redhat.io/jboss-eap-7/eap70-openshift:1.7 | ||
registry.access.redhat.com/jboss-eap-7/eap71-openshift | ||
registry.access.redhat.com/jboss-eap-7/eap72-openshift | ||
registry.redhat.io/jboss-eap-7/eap73-openjdk11-openshift-rhel8:7.3.10 | ||
registry.redhat.io/jboss-eap-7/eap74-openjdk11-openshift-rhel8:7.4.0 | ||
registry.redhat.io/jboss-eap-7/eap74-openjdk17-openshift-rhel8:7.4.14 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Bash strict mode | ||
set -eo pipefail | ||
|
||
## This script is used by the CI to be able to re-tag the docker images | ||
## to use the official docker namespace. | ||
## Or by an Elastic employee to configure the docker images as needed. | ||
while read -r i ; do | ||
[[ -z $i ]] && continue | ||
name="${i##*/}" | ||
echo "::group::$name" | ||
docker pull docker.elastic.co/observability-ci/$name --platform linux/amd64 | ||
docker tag docker.elastic.co/observability-ci/$name $i | ||
echo "::endgroup::" | ||
done < .ci/scripts/jboss-docker-images.txt | ||
|
||
if [ "$CI" == "true" ] ;then | ||
echo "::group::docker-images" | ||
docker images | ||
echo "::endgroup::" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Bash strict mode | ||
set -eo pipefail | ||
|
||
## This script is called manually when a new Docker image is added. | ||
while read -r i ; do | ||
[[ -z $i ]] && continue | ||
name="${i##*/}" | ||
echo "::group::$name" | ||
docker pull --platform linux/amd64 $i | ||
docker tag $i docker.elastic.co/observability-ci/$name | ||
docker push docker.elastic.co/observability-ci/$name | ||
echo "::endgroup::" | ||
done < .ci/scripts/jboss-docker-images.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters