If you have an existing Arvados installation using Docker 1.9 and wish to update to Docker 1.10+, you must migrate the Docker images stored in Keep.
The arv-migrate-docker19
tool converts Docker images stored in Arvados from image format v1 (Docker <= 1.9) to image format v2 (Docker >= 1.10).
Requires Docker running on the local host (can be either 1.9 or 1.10+). Linux kernel >= 3.18-rc6 to support overlayfs.
Usage:
docker pull arvados/migrate-docker19:1.0
. If you’re unable to do this, you can run arvados/docker/migrate-docker19/build.sh
to create arvados/migrate-docker19
Docker image.sudo modprobe overlayfs bridge br_netfilter nf_nat
--tempdir
switch. Make sure that the user running the docker daemon has permissions to write in that directory.arv-migrate-docker19 --dry-run
from the Arvados Python SDK on the host (not in a container). This will print out some information useful for the migration.arv-migrate-docker19
from the Arvados Python SDK on the host (not in a container).This will query Arvados for v1 format Docker images. For each image that does not already have a corresponding v2 format image (as indicated by a docker_image_migration tag) it will perform the following process:
i) download the image from Arvados
ii) load it into Docker
iii) update the Docker version, which updates the image
iv) save the v2 format image and upload to Arvados
v) create a migration link
Once the Docker images in Keep have been migrated, upgrade the version of Docker used across the cluster. Finally, update the API server configuration from “v1” to “v2” to reflect the supported Docker image version:
docker_image_formats: ["v2"]
The content of this documentation is licensed under the
Creative
Commons Attribution-Share Alike 3.0 United States licence.
Code samples in this documentation are licensed under the
Apache License, Version 2.0.