Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tango
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LOFAR2.0
tango
Commits
ab9f9dab
Commit
ab9f9dab
authored
3 years ago
by
Corné Lukken
Browse files
Options
Downloads
Patches
Plain Diff
L2SS-205
: Address some feedback on patch
parent
b66f8af4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!183
Docker image building & pushing with CI pipeline caching
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+1
-6
1 addition, 6 deletions
.gitlab-ci.yml
docker-compose/Makefile
+2
-1
2 additions, 1 deletion
docker-compose/Makefile
sbin/tag_and_push_docker_image.sh
+47
-11
47 additions, 11 deletions
sbin/tag_and_push_docker_image.sh
with
50 additions
and
18 deletions
.gitlab-ci.yml
+
1
−
6
View file @
ab9f9dab
...
...
@@ -49,7 +49,7 @@ stages:
.base_docker_store_images
:
extends
:
.base_docker_images
script
:
# Do not remove 'bash' or statem
ent will be ignored by primitive docker shell
# Do not remove 'bash' or statement will be ignored by primitive docker shell
-
bash $CI_PROJECT_DIR/sbin/tag_and_push_docker_image.sh
docker_store_images_master_tag
:
extends
:
.base_docker_store_images
...
...
@@ -347,7 +347,6 @@ integration_test_docker:
tag="$CI_COMMIT_REF_SLUG"
echo "Running on branch '$CI_COMMIT_BRANCH': tag = $tag"
fi
-
echo $tag
-
apk add --update make bash docker-compose
-
apk add --update bind-tools
-
docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
...
...
@@ -367,10 +366,6 @@ integration_test_docker:
-
chmod u+x $CI_PROJECT_DIR/sbin/tag_and_push_docker_image.sh
# Do not remove 'bash' or statement will be ignored by primitive docker shell
-
bash $CI_PROJECT_DIR/sbin/tag_and_push_docker_image.sh pull $tag
# TODO(Corne): Remove me
-
echo $tag
-
docker image ls
-
docker ps
# Allow integration test to execute
-
chmod u+x $CI_PROJECT_DIR/sbin/run_integration_test.sh
# Do not remove 'bash' or statement will be ignored by primitive docker shell
...
...
This diff is collapsed.
Click to expand it.
docker-compose/Makefile
+
2
−
1
View file @
ab9f9dab
...
...
@@ -33,6 +33,8 @@ else ifeq (stop,$(firstword $(MAKECMDGOALS)))
SERVICE_TARGET
=
true
else
ifeq
(restart,$(firstword $(MAKECMDGOALS)))
SERVICE_TARGET
=
true
else
ifeq
(up,$(firstword $(MAKECMDGOALS)))
SERVICE_TARGET
=
true
else
ifeq
(build,$(firstword $(MAKECMDGOALS)))
SERVICE_TARGET
=
true
else
ifeq
(build-nocache,$(firstword $(MAKECMDGOALS)))
...
...
@@ -169,7 +171,6 @@ bootstrap: pull build # first start, initialise from scratch
start
:
up
##
start a service (usage: make start <servicename>)
if
[
$(
UNAME_S
)
=
Linux
]
;
then
touch
~/.Xauthority
;
chmod
a+r ~/.Xauthority
;
fi
echo
"TEST COMMANDLINE:
$(
DOCKER_COMPOSE_ARGS
)
docker-compose
$(
COMPOSE_FILE_ARGS
)
start
$(
SERVICE
)
"
$(
DOCKER_COMPOSE_ARGS
)
docker-compose
$(
COMPOSE_FILE_ARGS
)
start
$(
SERVICE
)
stop
:
##
stop a service (usage: make stop <servicename>)
...
...
This diff is collapsed.
Click to expand it.
sbin/tag_and_push_docker_image.sh
+
47
−
11
View file @
ab9f9dab
#!/bin/bash -e
function
usage
{
echo
"./
$(
basename
$0
)
no arguments, downloads remote images and pushes these to ASTRON registry.
The versions downloaded are controlled by the docker-compose/.env file"
echo
""
echo
"./
$(
basename
$0
)
-h
displays this help message"
echo
""
echo
"./
$(
basename
$0
)
<docker service name> <tag>
downloads latest version of image from the ASTRON registry, builds the
specified service and pushes the image with the specified tag to the
ASTRON registry"
echo
""
echo
"./
$(
basename
$0
)
pull <tag>
downloads all images for the integration test with the specified tag
falling back to 'latest' if unavailable. Should neither exist on the
ASTRON registry the script will exit 1. The images are retagged to match
the output of docker-compose."
}
# list of arguments expected in the input
optstring
=
":h"
while
getopts
${
optstring
}
arg
;
do
case
${
arg
}
in
h
)
usage
exit
0
;;
:
)
echo
"
$0
: Must supply an argument to -
$OPTARG
."
>
&2
exit
1
;;
?
)
echo
"Invalid option: -
${
OPTARG
}
."
exit
2
;;
esac
done
if
[
-z
"
${
LOFAR20_DIR
+x
}
"
]
;
then
echo
"LOFAR20_DIR not set, did you forget to source lofar20rc.sh?"
exit
1
...
...
@@ -8,13 +48,12 @@ fi
# shellcheck disable=SC1090
.
"
${
LOFAR20_DIR
}
/docker-compose/.env"
||
exit
1
# Array of tuples separated by space inside double quotes
# These images are downloaded from a remote registry and pushed locally
# List of images and their tag
REMOTE_IMAGES
=(
"tango-dsconfig
${
TANGO_DSCONFIG_VERSION
}
"
"tango-java
${
TANGO_JAVA_VERSION
}
"
"tango-itango
${
TANGO_ITANGO_VERSION
}
"
"tango-pogo
${
TANGO_POGO_VERSION
}
"
"tango-cpp
${
TANGO_CPP_VERSION
}
"
"tango-db
${
TANGO_DB_VERSION
}
"
"tango-dsconfig
${
TANGO_DSCONFIG_VERSION
}
"
"tango-rest
${
TANGO_REST_VERSION
}
"
"tango-dsconfig
:
${
TANGO_DSCONFIG_VERSION
}
"
"tango-java
:
${
TANGO_JAVA_VERSION
}
"
"tango-itango
:
${
TANGO_ITANGO_VERSION
}
"
"tango-pogo
:
${
TANGO_POGO_VERSION
}
"
"tango-cpp
:
${
TANGO_CPP_VERSION
}
"
"tango-db
:
${
TANGO_DB_VERSION
}
"
"tango-dsconfig
:
${
TANGO_DSCONFIG_VERSION
}
"
"tango-rest
:
${
TANGO_REST_VERSION
}
"
)
# If first argument of bash script not set run first stage
...
...
@@ -23,11 +62,8 @@ if [ -z "${1+x}" ]; then
# Iterate over al the REMOTE_IMAGES and pull them from remote and push local
for
image
in
"
${
REMOTE_IMAGES
[@]
}
"
;
do
# Set, splits tuple into $1 and $2
# shellcheck disable=SC2086
set
--
$image
remote_url
=
"
${
DOCKER_REGISTRY_HOST
}
/
${
DOCKER_REGISTRY_USER
}
-
${
1
}
:
${
2
}
"
local_url
=
"
${
LOCAL_DOCKER_REGISTRY_HOST
}
/
${
LOCAL_DOCKER_REGISTRY_USER
}
/
${
1
}
:
${
2
}
"
remote_url
=
"
${
DOCKER_REGISTRY_HOST
}
/
${
DOCKER_REGISTRY_USER
}
-
${
image
}
"
local_url
=
"
${
LOCAL_DOCKER_REGISTRY_HOST
}
/
${
LOCAL_DOCKER_REGISTRY_USER
}
/
${
image
}
"
docker pull
"
${
remote_url
}
"
docker tag
"
${
remote_url
}
"
"
${
local_url
}
"
docker push
"
${
local_url
}
"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment