Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

scion.sh, topogen: adopt docker compose plugin and cleanup #4398

Merged
merged 30 commits into from
Oct 5, 2023
Merged
Show file tree
Hide file tree
Changes from 26 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
6ffb29c
test environment: bundled jager and prometheus as a single docker com…
jiceatscion Sep 22, 2023
12bfb16
test environment: Document monitoring services.
jiceatscion Sep 22, 2023
bd36719
test environment: Small cleanup. use "start", not "run". Keeping "run…
jiceatscion Sep 25, 2023
0a121e6
Merge branch 'scionproto:master' into build_cleanup
jiceatscion Sep 25, 2023
47e5204
Merge branch 'scionproto:master' into build_cleanup
jiceatscion Sep 26, 2023
59a0b8b
build: assorted cleanups
jiceatscion Sep 26, 2023
7f2bed3
Merge branch 'scionproto:master' into build_cleanup
jiceatscion Sep 27, 2023
b73d9db
build: Please the code format checker.
jiceatscion Sep 27, 2023
d159aef
build: made scion.sh mstatus resitant to docker compose cosmetic chan…
jiceatscion Sep 27, 2023
bd3bb9b
test: fix the revocation test.
jiceatscion Sep 27, 2023
c831b8c
build: Implemented some reviewers suggestions.
jiceatscion Sep 28, 2023
2598e45
build: indulge bash's quirk. Tabify the end marker for a tabified her…
jiceatscion Sep 28, 2023
6543b5c
build: More tab wrangling.
jiceatscion Sep 28, 2023
6dfff54
build: undo deflaking of hidden_paths and cert_renewal tests.
jiceatscion Sep 28, 2023
31b03ec
router: slow-path in async packet processing (#4383)
rohrerj Sep 28, 2023
54a9360
acceptance: de-flake cert_renewal and hidden_paths (#4399)
matzf Sep 28, 2023
222c5f5
build: assorted cleanups
jiceatscion Sep 28, 2023
86db755
build: undo deflaking of hidden_paths and cert_renewal tests.
jiceatscion Sep 28, 2023
79900be
Merge branch 'master' into build_cleanup
jiceatscion Sep 28, 2023
927085b
build: fix comment.
jiceatscion Sep 28, 2023
65bbe58
build: address reviewers comments.
jiceatscion Sep 29, 2023
08b9754
build: add --compatibility arg to docker compose.
jiceatscion Sep 29, 2023
0bfc34e
build: small simplification.
jiceatscion Sep 29, 2023
f72b740
build: fix internal refs in doc.
jiceatscion Oct 2, 2023
3f62376
build: fix mstatus bug in supervisord mode.
jiceatscion Oct 2, 2023
6c79632
build: fix formating.
jiceatscion Oct 2, 2023
dc4b786
build: Provide a proper home dir to python tests that run "docker com…
jiceatscion Oct 3, 2023
1113770
Merge branch 'master' into build_cleanup
matzf Oct 3, 2023
2a8b43c
build: delete the install_docker script.
jiceatscion Oct 5, 2023
dedd592
Merge remote-tracking branch 'refs/remotes/origin/build_cleanup' into…
jiceatscion Oct 5, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .buildkite/hooks/pre-command
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ echo "~~~ Starting bazel remote cache proxy"
# Start bazel remote cache proxy for S3
# Note that S3 keys are injected by buildkite, see
# https://buildkite.com/docs/pipelines/secrets#storing-secrets-with-the-elastic-ci-stack-for-aws
docker-compose -f .buildkite/hooks/bazel-remote.yml -p bazel_remote up -d
docker compose --compatibility -f .buildkite/hooks/bazel-remote.yml -p bazel_remote up -d

echo "~~~ Starting go module proxy"
docker-compose -f .buildkite/hooks/go-module-proxy.yml -p athens up -d
docker compose --compatibility -f .buildkite/hooks/go-module-proxy.yml -p athens up -d
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ clean:
bazel clean
rm -f bin/*

scrub:
bazel clean --expunge
rm -f bin/*

bazel:
rm -f bin/*
bazel build //:scion //:scion-ci
Expand Down
2 changes: 1 addition & 1 deletion acceptance/common/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Tests can use:

- `self.artifacts`: the specified directory for test outputs, created during setup.
- `self.get_executable(<name>)`: returns an executable specified using the `--executable` switch.
- `self.dc`: a wrapper for `docker-compose`, instantiated during `TestTopogen.setup`.
- `self.dc`: a wrapper for `docker compose`, instantiated during `TestTopogen.setup`.

The `base.main` function is the main entry point to run the tests and must be
invoked in `__main__`.
Expand Down
2 changes: 1 addition & 1 deletion acceptance/common/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def setup_start(self):
raise Exception("Failed services.\n" + ps)

def teardown(self):
# Avoid running docker-compose teardown if setup_prepare failed
# Avoid running docker compose teardown if setup_prepare failed
if self._setup_prepare_failed:
return
out_dir = self.artifacts / "logs"
Expand Down
3 changes: 2 additions & 1 deletion acceptance/common/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ def __call__(self, *args, **kwargs) -> str:
# Note: not using plumbum here due to complications with encodings in the captured output
try:
res = subprocess.run(
["docker-compose", "-f", self.compose_file, "-p", self.project, *args],
["docker", "compose", "--compatibility",
"-f", self.compose_file, "-p", self.project, *args],
check=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, encoding="utf-8")
except subprocess.CalledProcessError as e:
raise _CalledProcessErrorWithOutput(e) from None
Expand Down
1 change: 1 addition & 0 deletions acceptance/common/raw.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,6 @@ def raw_test(
"PYTHONUNBUFFERED": "1",
# Ensure that unicode output can be printed to the log/console
"PYTHONIOENCODING": "utf-8",
"HOME": "/tmp",
},
)
1 change: 1 addition & 0 deletions acceptance/common/topogen.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ def topogen_test(
"PYTHONUNBUFFERED": "1",
# Ensure that unicode output can be printed to the log/console
"PYTHONIOENCODING": "utf-8",
"HOME": "/tmp",
},
)

Expand Down
14 changes: 7 additions & 7 deletions acceptance/sig_short_exp_time/test
Original file line number Diff line number Diff line change
Expand Up @@ -55,24 +55,24 @@ run_test() {(set -e
docker image load -i acceptance/sig_short_exp_time/sig1.tar
docker image load -i acceptance/sig_short_exp_time/sig2.tar

docker-compose -f acceptance/sig_short_exp_time/docker-compose.yml up -d dispatcher1 dispatcher2 sig1 sig2 patha pathb
docker compose --compatibility -f acceptance/sig_short_exp_time/docker-compose.yml up -d dispatcher1 dispatcher2 sig1 sig2 patha pathb

# Set up forward route on network stack 1 and 2 through the sig tunnel
# device. The route is a property of the network stack, and persists after
# the container that added it has exited.
#
# If the route configuration fails, the test is not stopped.
docker-compose -f acceptance/sig_short_exp_time/docker-compose.yml run --name route1 --rm tester1 ip route add 242.254.200.2/32 dev sig || true
docker-compose -f acceptance/sig_short_exp_time/docker-compose.yml run --name route2 --rm tester2 ip route add 242.254.100.2/32 dev sig || true
docker compose --compatibility -f acceptance/sig_short_exp_time/docker-compose.yml run --name route1 --rm tester1 ip route add 242.254.200.2/32 dev sig || true
docker compose --compatibility -f acceptance/sig_short_exp_time/docker-compose.yml run --name route2 --rm tester2 ip route add 242.254.100.2/32 dev sig || true

echo "Start background ping, ping every 0.2 seconds"
docker-compose -f acceptance/sig_short_exp_time/docker-compose.yml run --name tester1 -d tester1 ping -i 0.2 242.254.200.2
docker compose --compatibility -f acceptance/sig_short_exp_time/docker-compose.yml run --name tester1 -d tester1 ping -i 0.2 242.254.200.2

echo "Waiting 10 seconds for path A to expire..."
sleep 10
echo "Path A expired, simulating it by shutting down path A proxy"
# Traffic should have switched beforehand to path b, and no pings should be lost
docker-compose -f acceptance/sig_short_exp_time/docker-compose.yml stop patha
docker compose --compatibility -f acceptance/sig_short_exp_time/docker-compose.yml stop patha
sleep 1
docker kill -s SIGINT tester1

Expand Down Expand Up @@ -104,9 +104,9 @@ OUTPUT_DIR=$TEST_UNDECLARED_OUTPUTS_DIR
mkdir -p $OUTPUT_DIR/logs

for CNTR in sig1 sig2 dispatcher1 dispatcher2; do
docker-compose -f acceptance/sig_short_exp_time/docker-compose.yml logs "$CNTR" > "$OUTPUT_DIR/logs/$CNTR.log"
docker compose --compatibility -f acceptance/sig_short_exp_time/docker-compose.yml logs "$CNTR" > "$OUTPUT_DIR/logs/$CNTR.log"
done

docker-compose -f acceptance/sig_short_exp_time/docker-compose.yml down -v
docker compose --compatibility -f acceptance/sig_short_exp_time/docker-compose.yml down -v

exit $RC
21 changes: 12 additions & 9 deletions acceptance/topo_cs_reload/reload_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,16 +108,19 @@ func setupTest(t *testing.T) testState {
s.mustExec(t, "docker", "image", "load", "-i", "dispatcher.tar")
s.mustExec(t, "docker", "image", "load", "-i", "control.tar")
// now start the docker containers
s.mustExec(t, "docker-compose", "-f", "docker-compose.yml", "up", "-d")
s.mustExec(t, "docker", "compose", "--compatibility", "-f", "docker-compose.yml",
"up", "-d")
// wait a bit to make sure the containers are ready.
time.Sleep(time.Second / 2)
t.Log("Test setup done")
s.mustExec(t, "docker-compose", "-f", "docker-compose.yml", "ps")
s.mustExec(t, "docker", "compose", "--compatibility", "-f", "docker-compose.yml",
"ps")
return s
}

func (s testState) teardownTest(t *testing.T) {
defer s.mustExec(t, "docker-compose", "-f", "docker-compose.yml", "down", "-v")
defer s.mustExec(t, "docker", "compose", "--compatibility",
"-f", "docker-compose.yml", "down", "-v")

outdir, exists := os.LookupEnv("TEST_UNDECLARED_OUTPUTS_DIR")
require.True(t, exists, "TEST_UNDECLARED_OUTPUTS_DIR must be defined")
Expand All @@ -127,8 +130,8 @@ func (s testState) teardownTest(t *testing.T) {
"topo_cs_reload_dispatcher": "disp.log",
"topo_cs_reload_control_srv": "control.log",
} {
cmd := exec.Command("docker-compose", "-f", "docker-compose.yml", "logs", "--no-color",
service)
cmd := exec.Command("docker", "compose", "--compatibility",
"-f", "docker-compose.yml", "logs", "--no-color", service)
logFileName := fmt.Sprintf("%s/logs/%s", outdir, file)
logFile, err := os.Create(logFileName)
if err != nil {
Expand All @@ -146,10 +149,10 @@ func (s testState) teardownTest(t *testing.T) {
func (s testState) loadTopo(t *testing.T, name string) {
t.Helper()

s.mustExec(t, "docker-compose", "-f", "docker-compose.yml", "exec", "-T",
"topo_cs_reload_control_srv", "mv", name, "/topology.json")
s.mustExec(t, "docker-compose", "-f", "docker-compose.yml", "kill", "-s", "SIGHUP",
"topo_cs_reload_control_srv")
s.mustExec(t, "docker", "compose", "--compatibility", "-f", "docker-compose.yml",
"exec", "-T", "topo_cs_reload_control_srv", "mv", name, "/topology.json")
s.mustExec(t, "docker", "compose", "--compatibility", "-f", "docker-compose.yml",
"kill", "-s", "SIGHUP", "topo_cs_reload_control_srv")
}

func (s testState) mustExec(t *testing.T, name string, arg ...string) {
Expand Down
21 changes: 12 additions & 9 deletions acceptance/topo_daemon_reload/reload_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,16 +71,18 @@ func setupTest(t *testing.T) {
mustExec(t, "docker", "image", "load", "-i", "dispatcher.tar")
mustExec(t, "docker", "image", "load", "-i", "daemon.tar")
// now start the docker containers
mustExec(t, "docker-compose", "-f", "docker-compose.yml", "up",
"-d", "topo_daemon_reload_dispatcher", "topo_daemon_reload_daemon")
mustExec(t, "docker", "compose", "--compatibility", "-f", "docker-compose.yml",
"up", "-d", "topo_daemon_reload_dispatcher", "topo_daemon_reload_daemon")
// wait a bit to make sure the containers are ready.
time.Sleep(time.Second / 2)
t.Log("Test setup done")
mustExec(t, "docker-compose", "-f", "docker-compose.yml", "ps")
mustExec(t, "docker", "compose", "--compatibility", "-f", "docker-compose.yml",
"ps")
}

func teardownTest(t *testing.T) {
defer mustExec(t, "docker-compose", "-f", "docker-compose.yml", "down", "-v")
defer mustExec(t, "docker", "compose", "--compatibility",
"-f", "docker-compose.yml", "down", "-v")

outdir, exists := os.LookupEnv("TEST_UNDECLARED_OUTPUTS_DIR")
require.True(t, exists, "TEST_UNDECLARED_OUTPUTS_DIR must be defined")
Expand All @@ -90,7 +92,8 @@ func teardownTest(t *testing.T) {
"topo_daemon_reload_dispatcher": "disp.log",
"topo_daemon_reload_daemon": "daemon.log",
} {
cmd := exec.Command("docker-compose", "-f", "docker-compose.yml", "logs", "--no-color",
cmd := exec.Command("docker", "compose", "--compatibility",
"-f", "docker-compose.yml", "logs", "--no-color",
service)
logFileName := fmt.Sprintf("%s/logs/%s", outdir, file)
logFile, err := os.Create(logFileName)
Expand All @@ -108,10 +111,10 @@ func teardownTest(t *testing.T) {
func loadTopo(t *testing.T, name string) {
t.Helper()

mustExec(t, "docker-compose", "-f", "docker-compose.yml", "exec", "-T",
"topo_daemon_reload_daemon", "mv", name, "/topology.json")
mustExec(t, "docker-compose", "-f", "docker-compose.yml", "kill", "-s", "SIGHUP",
"topo_daemon_reload_daemon")
mustExec(t, "docker", "compose", "--compatibility", "-f", "docker-compose.yml",
"exec", "-T", "topo_daemon_reload_daemon", "mv", name, "/topology.json")
mustExec(t, "docker", "compose", "--compatibility", "-f", "docker-compose.yml",
"kill", "-s", "SIGHUP", "topo_daemon_reload_daemon")
}

func mustExec(t *testing.T, name string, arg ...string) {
Expand Down
44 changes: 37 additions & 7 deletions doc/dev/run.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ Running SCION in this developement setup, is also called running a **local topol
The scripts support two different process orchestrators as "backends":

- `supervisor <http://supervisord.org/>`_. This is the default and a bit more light-weight. Packets are sent over the loopback interface.
- `docker-compose <https://docs.docker.com/compose/>`_. Runs individual processes in separate containers connected with docker network bridges. Only this mode supports running a "SCION-IP gateway".
- `docker compose <https://docs.docker.com/compose/>`_. Runs individual processes in separate containers connected with docker network bridges. Only this mode supports running a "SCION-IP gateway".

.. hint:: Before attempting to use the docker compose mode, be sure to build the necessary docker images with ``make docker-images``

.. TODO
- Describe configuration directory (referencing manuals)
Expand All @@ -31,7 +32,7 @@ Quickstart
* Build, using ``make``

#. Generate the control-plane PKI keys and certificates, configuration files, and process
orchestrator (supervisor or docker-compose) configuration.
orchestrator (supervisor or docker compose) configuration.

.. code-block:: bash

Expand Down Expand Up @@ -84,6 +85,13 @@ Various helper files are also generated for the benefit of scripts and tooling o
for example, ``gen/sciond_addresses.json`` is a simple mapping from AS number to the address of the
corresponding :doc:`scion daemon </manuals/daemon>` instance.

If :option:`scion.sh topology -d` command is used, configuration files are created to
enable running the SCION services in docker containers (see :ref:`docker-section`). Otherwise,
a configuration file is created to enable running the SCION services as plain processes
(see :ref:`supervisor-section`)

.. _supervisor-section:

supervisor
----------
The ``gen/supervisord.conf`` configuration defines the programs that make up the local topology.
Expand All @@ -109,16 +117,18 @@ For example::
# and now ping this host from inside AS 1-ff00:0:110, with interactive path prompt
bin/scion ping --sciond $(./scion.sh sciond-addr 110) 1-ff00:0:111,127.0.0.1 --interactive

.. _docker-section:

docker
------
The main docker-compose file is ``gen/scion-dc.yml``.
The main docker compose file is ``gen/scion-dc.yml``.

Each SCION service or router runs in a separate container, and the network access of the individual
containers is configured to mimick real-world connectivity.

There are "tester" containers configured in each AS to mimick end hosts in a SCION AS.
These tester containers can be used to run commands accessing the SCION network.
As a shorthand for the somewhat unwieldy ``docker-compose`` invocation, the :file-ref:`tools/dc`
As a shorthand for the somewhat unwieldy ``docker compose`` invocation, the :file-ref:`tools/dc`
script can be used. For example::

# show paths from 1-ff00:0:112 to 1-ff00:0:110
Expand All @@ -140,7 +150,7 @@ scion.sh

.. Note::
The SCION tools and services need to be built **before** running these commands, using
``make`` or ``make docker-images`` (when using the docker-compose configuration).
``make`` or ``make docker-images`` (when using the docker compose configuration).

The basic usage is ``./scion.sh <subcommand> <options>``. The main subcommands are:

Expand All @@ -149,7 +159,7 @@ The basic usage is ``./scion.sh <subcommand> <options>``. The main subcommands a
.. option:: topology

Generate the control-plane PKI keys and certificates, configuration files,
and process orchestrator (supervisor or docker-compose) configuration
and process orchestrator (supervisor or docker compose) configuration
for a given network topopology defined in a
:file-ref:`*.topo configuration file <topology/README.md>`.

Expand All @@ -161,7 +171,7 @@ The basic usage is ``./scion.sh <subcommand> <options>``. The main subcommands a

.. option:: -d, --docker

Create a docker-compose configuration (instead of default supervisord).
Create a docker compose configuration (instead of default supervisord).

.. option:: --sig

Expand All @@ -180,6 +190,14 @@ The basic usage is ``./scion.sh <subcommand> <options>``. The main subcommands a

Terminate this run of the local SCION topology.

.. option:: start-monitoring

Start the monitoring services (jaeger and prometheus).

.. option:: stop-monitoring

Stop the monitoring services.

.. option:: sciond-addr <ISD-AS>

Return the address for the scion daemon for the matching ISD-AS by consulting
Expand All @@ -190,3 +208,15 @@ The basic usage is ``./scion.sh <subcommand> <options>``. The main subcommands a
.. option:: help

Describe all available subcommands

end2end_integration
===================

:program:bin/end2end_integration is a basic functional test.

The basic usage is ``./end2end_integration <options>``.

.. option:: -d

Assume the SCION services are dockerized. Must be consistent with the last
invocation of ``scion.sh topology``.
9 changes: 5 additions & 4 deletions doc/dev/setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ Prerequisites
``sudo usermod -a -G docker ${LOGNAME}``, where ``${LOGNAME}`` is replaced with your user name. Log out
and log back in so that your membership of the ``docker`` group is seen by the shell session.

Optionally install ``docker-compose``. This is needed if you want to run the
``docker-compose`` based test topology setup instead of the default setup based on ``supervisord``.
Please follow the instructions for `docker-compose <https://docs.docker.com/compose/install/>`_.
Optionally install the ``Docker Compose Plugin``. This is needed if you want to run the
``docker compose`` based test topology setup instead of the default setup based on ``supervisord``.
Please follow the instructions for
`Install Compose Plugin <https://docs.docker.com/compose/install/linux/#install-using-the-repository>`_.

Bazel
-----
Expand Down Expand Up @@ -63,7 +64,7 @@ Bazel
build artifacts from bazel. Bazel-remote can manage the disk space and does
not infinitely grow like the Bazel built-in disk-cache. To start bazel-remote run::

./scion.sh bazel_remote
./scion.sh bazel-remote

#. Build SCION services and tools.

Expand Down
Loading
Loading