Skip to content
GitLab
Explore
Sign in
Register
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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LOFAR2.0
tango
Commits
6328f735
Commit
6328f735
authored
Nov 10, 2022
by
Stefano Di Frischia
Browse files
Options
Downloads
Patches
Plain Diff
L2SS-1052
: remove further elk entries
parent
320529ba
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!480
Resolve L2SS-1052 "Reroute to loki"
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+0
-15
0 additions, 15 deletions
.gitlab-ci.yml
sbin/run_integration_test.sh
+0
-3
0 additions, 3 deletions
sbin/run_integration_test.sh
sbin/tag_and_push_docker_image.sh
+0
-1
0 additions, 1 deletion
sbin/tag_and_push_docker_image.sh
with
0 additions
and
19 deletions
.gitlab-ci.yml
+
0
−
15
View file @
6328f735
...
@@ -88,8 +88,6 @@ docker_build_image_all:
...
@@ -88,8 +88,6 @@ docker_build_image_all:
-
if
:
($CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH) && $CI_COMMIT_TAG
-
if
:
($CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH) && $CI_COMMIT_TAG
script
:
script
:
# Do not remove 'bash' or statement 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 elk latest
-
bash $CI_PROJECT_DIR/sbin/tag_and_push_docker_image.sh elk-configure-host latest
-
bash $CI_PROJECT_DIR/sbin/tag_and_push_docker_image.sh lofar-device-base latest
-
bash $CI_PROJECT_DIR/sbin/tag_and_push_docker_image.sh lofar-device-base latest
-
bash $CI_PROJECT_DIR/sbin/tag_and_push_docker_image.sh prometheus latest
-
bash $CI_PROJECT_DIR/sbin/tag_and_push_docker_image.sh prometheus latest
-
bash $CI_PROJECT_DIR/sbin/tag_and_push_docker_image.sh itango latest
-
bash $CI_PROJECT_DIR/sbin/tag_and_push_docker_image.sh itango latest
...
@@ -140,19 +138,6 @@ docker_build_image_lofar_device_base:
...
@@ -140,19 +138,6 @@ docker_build_image_lofar_device_base:
script
:
script
:
# Do not remove 'bash' or statement 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 lofar-device-base $tag
-
bash $CI_PROJECT_DIR/sbin/tag_and_push_docker_image.sh lofar-device-base $tag
docker_build_image_elk
:
extends
:
.base_docker_images_except
only
:
refs
:
-
merge_requests
changes
:
-
docker-compose/elk.yml
-
docker-compose/elk/*
-
docker-compose/elk-configure-host/*
script
:
# Do not remove 'bash' or statement will be ignored by primitive docker shell
-
bash $CI_PROJECT_DIR/sbin/tag_and_push_docker_image.sh elk $tag
-
bash $CI_PROJECT_DIR/sbin/tag_and_push_docker_image.sh elk-configure-host $tag
docker_build_image_prometheus
:
docker_build_image_prometheus
:
extends
:
.base_docker_images_except
extends
:
.base_docker_images_except
only
:
only
:
...
...
This diff is collapsed.
Click to expand it.
sbin/run_integration_test.sh
+
0
−
3
View file @
6328f735
...
@@ -86,7 +86,6 @@ SIMULATORS=(sdptr-sim recv-sim unb2-sim apsct-sim apspu-sim ccd-sim)
...
@@ -86,7 +86,6 @@ SIMULATORS=(sdptr-sim recv-sim unb2-sim apsct-sim apspu-sim ccd-sim)
# shellcheck disable=SC2086
# shellcheck disable=SC2086
make build
"
${
DEVICES
[@]
}
"
"
${
SIMULATORS
[@]
}
"
make build
"
${
DEVICES
[@]
}
"
"
${
SIMULATORS
[@]
}
"
# make build elk integration-test # L2SS-970: elk temporarily disabled
make build logstash integration-test schemas
make build logstash integration-test schemas
make build archiver-timescale hdbppts-cm hdbppts-es
make build archiver-timescale hdbppts-cm hdbppts-es
...
@@ -95,7 +94,6 @@ make build archiver-timescale hdbppts-cm hdbppts-es
...
@@ -95,7 +94,6 @@ make build archiver-timescale hdbppts-cm hdbppts-es
make stop schemas
make stop schemas
make stop
"
${
DEVICES
[@]
}
"
"
${
SIMULATORS
[@]
}
"
hdbppts-es hdbppts-cm archiver-timescale
make stop
"
${
DEVICES
[@]
}
"
"
${
SIMULATORS
[@]
}
"
hdbppts-es hdbppts-cm archiver-timescale
make stop device-docker
# this one does not test well in docker-in-docker
make stop device-docker
# this one does not test well in docker-in-docker
# make stop elk # L2SS-970: elk temporarily disabled
make stop logstash schemas
make stop logstash schemas
# Run dummy integration test to install pytango in tox virtualenv without
# Run dummy integration test to install pytango in tox virtualenv without
...
@@ -106,7 +104,6 @@ make stop logstash schemas
...
@@ -106,7 +104,6 @@ make stop logstash schemas
# TODO(L2SS-992): Remove me and above documentation
# TODO(L2SS-992): Remove me and above documentation
integration_test dummy
integration_test dummy
# make start elk # L2SS-970: elk temporarily disabled
make start logstash schemas
make start logstash schemas
# Update the dsconfig
# Update the dsconfig
...
...
This diff is collapsed.
Click to expand it.
sbin/tag_and_push_docker_image.sh
+
0
−
1
View file @
6328f735
...
@@ -60,7 +60,6 @@ REMOTE_IMAGES=(
...
@@ -60,7 +60,6 @@ REMOTE_IMAGES=(
# integration tests.
# integration tests.
# TODO(Corne): Have this list generated from the .yml files
# TODO(Corne): Have this list generated from the .yml files
LOCAL_IMAGES
=(
LOCAL_IMAGES
=(
"elk elk y"
"elk-configure-host elk-configure-host y"
"logstash logstash y"
"logstash logstash y"
"lofar-device-base lofar-device-base y"
"lofar-device-base lofar-device-base y"
...
...
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