Container Roles
- build-container-image
Build one or more container images.
This is one of a collection of roles which are designed to work together to build, upload, and promote container images in a gating context:
build-container-image: Build the images.
Note
Build and upload roles are forthcoming.
The build-container-image role is designed to be used in check and gate pipelines and simply builds the images. It can be used to verify that the build functions, or it can be followed by the use of subsequent roles to upload the images to a registry.
They all accept the same input data, principally a list of dictionaries representing the images to build. YAML anchors can be used to supply the same data to all three jobs.
Use the ensure-docker or ensure-podman role to install Docker or Podman before using these roles.
Role Variables
-
zuul_work_dir
Default:{{ zuul.project.src_dir }}
The project directory. Serves as the base for build-container-image.container_images.context.
-
container_filename
The default container filename name to use. Serves as the base for build-container-image.container_images.container_filename. This allows a global overriding of the container filename name, for example when building all images from different folders with similarily named containerfiles.
If omitted, the default depends on the container command used. Typically, this is
Dockerfile
fordocker
andContainerfile
(with a fallback onDockerfile
) forpodman
.
-
container_command
Default:podman
The command to use when building the image (E.g.,
docker
).
-
container_registry_credentials
Type: dict This is only required for the upload and promote roles. This is expected to be a Zuul Secret in dictionary form. Each key is the name of a registry, and its value a dictionary with information about that registry.
Example:
container_registry_credentials: quay.io: username: foo password: bar
-
container_registry_credentials{}.[registry name]
Type: dict Information about a registry. The key is the registry name, and its value a dict as follows:
-
container_registry_credentials{}.[registry name]{}.username
The registry username.
-
container_registry_credentials{}.[registry name]{}.password
The registry password.
-
container_registry_credentials{}.[registry name]{}.repository
Optional; if supplied this is a regular expression which restricts to what repositories the image may be uploaded. The following example allows projects to upload images to repositories within an organization based on their own names:
repository: "^myorgname/{{ zuul.project.short_name }}.*"
-
container_registry_credentials{}.[registry name]{}.username
-
container_registry_credentials{}.[registry name]
-
container_images
Type: list A list of images to build. Each item in the list should have:
-
container_images[].context
The build context; this should be a directory underneath build-container-image.zuul_work_dir.
-
container_images[].container_filename
The filename of the container file, present in the context folder, used for building the image. Provide this if you are using a non-standard filename for a specific image.
-
container_images[].registry
The name of the target registry (E.g.,
quay.io
). Used by the upload and promote roles.
-
container_images[].repository
The name of the target repository in the registry for the image. Supply this even if the image is not going to be uploaded (it will be tagged with this in the local registry).
-
container_images[].path
Optional: the directory that should be passed to the build command. Useful for building images with a container file in the context directory but a source repository elsewhere.
-
container_images[].build_args
Type: list Optional: a list of values to pass to the
--build-arg
parameter.
-
container_images[].target
Optional: the target for a multi-stage build.
-
container_images[].tags
Default:['latest']
Type: list A list of tags to be added to the image when promoted.
-
container_images[].siblings
Default:[]
Type: list A list of sibling projects to be copied into
{{zuul_work_dir}}/.zuul-siblings
. This can be useful to collect multiple projects to be installed within the same Docker context. A-build-arg
calledZUUL_SIBLINGS
will be added with each sibling project. Note that projects here must be listed inrequired-projects
.
-
container_images[].context
- build-docker-image
Build one or more docker images.
This is one of a collection of roles which are designed to work together to build, upload, and promote docker images in a gating context:
build-docker-image: Build the images.
upload-docker-image: Stage the images on dockerhub.
promote-docker-image: Promote previously uploaded images.
The build-docker-image role is designed to be used in check and gate pipelines and simply builds the images. It can be used to verify that the build functions, or it can be followed by the use of subsequent roles to upload the images to Docker Hub.
The upload-docker-image role uploads the images to Docker Hub, but only with a single tag corresponding to the change ID. This role is designed to be used in a job in a gate pipeline so that the build produced by the gate is staged and can later be promoted to production if the change is successful.
The promote-docker-image role is designed to be used in a promote pipeline. It requires no nodes and runs very quickly on the Zuul executor. It simply re-tags a previously uploaded image for a change with whatever tags are supplied by build-docker-image.docker_images.tags. It also removes the change ID tag from the repository in Docker Hub, and removes any similar change ID tags more than 24 hours old. This keeps the repository tidy in the case that gated changes fail to merge after uploading their staged images.
They all accept the same input data, principally a list of dictionaries representing the images to build. YAML anchors can be used to supply the same data to all three jobs.
Use the ensure-docker role to install Docker before using this role.
Role Variables
-
zuul_work_dir
Default:{{ zuul.project.src_dir }}
The project directory. Serves as the base for build-docker-image.docker_images.context.
-
docker_dockerfile
Default:Dockerfile
The default Dockerfile name to use. Serves as the base for build-docker-image.docker_images.dockerfile. This allows a global overriding of Dockerfile name, for example when building all images from different folders with similarily named dockerfiles.
-
docker_registry
Default:''
The container registry the images should be tagged for, by default zuul will push the image to dockerhub.
-
docker_credentials
Type: dict This is only required for the upload and promote roles. This is expected to be a Zuul Secret with two keys:
-
docker_credentials{}.username
The Docker Hub username.
-
docker_credentials{}.password
The Docker Hub password.
-
docker_credentials{}.repository
Optional; if supplied this is a regular expression which restricts to what repositories the image may be uploaded. The following example allows projects to upload images to repositories within an organization based on their own names:
repository: "^myorgname/{{ zuul.project.short_name }}.*"
-
docker_credentials{}.username
-
docker_images
Type: list A list of images to build. Each item in the list should have:
-
docker_images[].context
The docker build context; this should be a directory underneath build-docker-image.zuul_work_dir.
-
docker_images[].dockerfile
The filename of the dockerfile, present in the context folder, used for building the image. Provide this if you are using a non-standard filename for a specific image.
-
docker_images[].repository
The name of the target repository in dockerhub for the image. Supply this even if the image is not going to be uploaded (it will be tagged with this in the local registry).
-
docker_images[].path
Optional: the directory that should be passed to docker build. Useful for building images with a Dockerfile in the context directory but a source repository elsewhere.
-
docker_images[].build_args
Type: list Optional: a list of values to pass to the docker
--build-arg
parameter.
-
docker_images[].target
Optional: the target for a multi-stage build.
-
docker_images[].tags
Default:['latest']
Type: list A list of tags to be added to the image when promoted.
-
docker_images[].siblings
Default:[]
Type: list A list of sibling projects to be copied into
{{zuul_work_dir}}/.zuul-siblings
. This can be useful to collect multiple projects to be installed within the same Docker context. A-build-arg
calledZUUL_SIBLINGS
will be added with each sibling project. Note that projects here must be listed inrequired-projects
.
-
docker_images[].labels
Default:[]
Type: list A list of labels to attach to the built image, in the form of “key=value”.
-
docker_images[].arch
Default:[]
Type: list A list of architectures to build on. When enabling this on any image, all of them will be built with
docker buildx
.Valid values are
linux/amd64
,linux/arm64
,linux/riscv64
,linux/ppc64le
,linux/s390x
,linux/386
,linux/arm/v7
,linux/arm/v6
.
-
docker_images[].context
- collect-container-logs
An ansible role to collect all container logs.
Role Variables
-
container_command
Default:docker
Container run-time CLI command
-
container_command
- deploy-openshift
Deploy openshift using oc cluster up.
- ensure-docker
An ansible role to install docker and configure it to use mirrors if available.
Role Variables
-
mirror_fqdn
Default:{{ zuul_site_mirror_fqdn }}
The base host for mirror servers.
-
docker_mirror
URL to override the generated docker hub mirror url based on ensure-docker.mirror_fqdn.
-
use_upstream_docker
Default:True
By default this role adds repositories to install docker from upstream docker. Set this to False to use the docker that comes with the distro.
-
docker_use_buildset_registry
Default:False
This role does not enable the usage of the buildset registry by default, this variable allows enabling the usage of the buildset registry after installing Docker.
-
docker_compose_install
Default:False
This role does not install docker-compose by default but you can use this setting to install docker-compose as well.
-
docker_update_channel
Default:stable
Which update channel to use for upstream docker. The two choices are
stable
, which is the default and updates quarterly, andedge
which updates monthly.
-
docker_insecure_registries
Default:undefined
Declare this with a list of insecure registries to define the registries which are allowed to communicate with HTTP only or HTTPS with no valid certificate.
-
docker_gpg_key
Default:string
The raw content of the upstream docker gpg key, as found here https://download.docker.com/linux/fedora/gpg
-
docker_distro_packages
Default:list
List of packages to be installed when use_upstream_docker is set to false. The package set is defined by default using distro specific variables. If the package set needs to be changed this option can be overridden as needed.
-
docker_upstream_distro_required_packages
Default:list
List of packages to be installed when use_upstream_docker is set to true. The package set is defined by default using distro specific variables and contains a list of supporting packages required to be installed prior to installing docker-ce. If the package set needs to be changed this option can be overridden as needed.
-
docker_upstream_distro_remove_packages
Default:list
List of packages to be removed before installing new ones. It is used for avoiding potential conflicts. For example it can remove docker package before trying to install docker-ce. The default value is distro specific.
-
docker_upstream_distro_packages
Default:list
List of packages to be installed when use_upstream_docker is set to true. The package set is defined by default using distro specific variables. If the package set needs to be changed this option can be overridden as needed.
-
docker_download_fqdn
Default:download.docker.com
Add default option to set the docker download fqdn.
-
docker_mirror_base_url
Default:https://{{ docker_download_fqdn }}/linux/{ubuntu,centos,fedora}
By default this option sets the repository base url. This variable is based on ensure-docker.docker_download_fqdn. When this option is unset, the role will use distro specific variables which are loaded at the time of execution.
-
docker_userland_proxy
Type: bool Set to false to disable the docker userland proxy. This variable is useful when docker is causing routing problem, such as when a kubernetes deployment is unable to reach its own service.
-
mirror_fqdn
- ensure-kubernetes
An ansible role to install kubernetes.
Role Variables
-
install_kubernetes_with_cluster
Default:True
If true, installs a Minikube cluster.
-
minikube_version
Default:latest
The version of Minikube to install.
-
minikube_dns_resolvers
Default:[]
List of dns resolvers to configure in k8s. Use this to override the resolvers that are found by default.
-
kubernetes_runtime
Default:docker
Which kubernetes runtime to use; values are
docker
orcri-o
.
-
ensure_kubernetes_minikube_addons
Default:[]
List of addons to configure in k8s. Use this to enable the addons.
-
install_kubernetes_with_cluster
- ensure-openshift
Setup openshift requirements and pull the container images. The deploy-openshift role can be used to start the services.
This role only works on CentOS.
Role Variables
-
origin_version
Default:v3.11.0
The origin version.
-
origin_version
- ensure-podman
Install podman container manager
Role Variables
-
ensure_podman_validate
Default:false
Used to enable validation of podman engine.
-
ensure_podman_validate
- ensure-skopeo
Install skopeo
- pause-buildset-registry
Pause a buildset registry
Utility role to pause a job providing a buildset registry.
Role Variables
-
buildset_registry
Location of external buildset registry. If this is defined, the job will not pause.
-
buildset_registry
- promote-docker-image
Promote one or more previously uploaded docker images.
This is one of a collection of roles which are designed to work together to build, upload, and promote docker images in a gating context:
build-docker-image: Build the images.
upload-docker-image: Stage the images on dockerhub.
promote-docker-image: Promote previously uploaded images.
The build-docker-image role is designed to be used in check and gate pipelines and simply builds the images. It can be used to verify that the build functions, or it can be followed by the use of subsequent roles to upload the images to Docker Hub.
The upload-docker-image role uploads the images to Docker Hub, but only with a single tag corresponding to the change ID. This role is designed to be used in a job in a gate pipeline so that the build produced by the gate is staged and can later be promoted to production if the change is successful.
The promote-docker-image role is designed to be used in a promote pipeline. It requires no nodes and runs very quickly on the Zuul executor. It simply re-tags a previously uploaded image for a change with whatever tags are supplied by build-docker-image.docker_images.tags. It also removes the change ID tag from the repository in Docker Hub, and removes any similar change ID tags more than 24 hours old. This keeps the repository tidy in the case that gated changes fail to merge after uploading their staged images.
They all accept the same input data, principally a list of dictionaries representing the images to build. YAML anchors can be used to supply the same data to all three jobs.
Use the ensure-docker role to install Docker before using this role.
Role Variables
-
zuul_work_dir
Default:{{ zuul.project.src_dir }}
The project directory. Serves as the base for build-docker-image.docker_images.context.
-
docker_dockerfile
Default:Dockerfile
The default Dockerfile name to use. Serves as the base for build-docker-image.docker_images.dockerfile. This allows a global overriding of Dockerfile name, for example when building all images from different folders with similarily named dockerfiles.
-
docker_registry
Default:''
The container registry the images should be tagged for, by default zuul will push the image to dockerhub.
-
docker_credentials
Type: dict This is only required for the upload and promote roles. This is expected to be a Zuul Secret with two keys:
-
docker_credentials{}.username
The Docker Hub username.
-
docker_credentials{}.password
The Docker Hub password.
-
docker_credentials{}.repository
Optional; if supplied this is a regular expression which restricts to what repositories the image may be uploaded. The following example allows projects to upload images to repositories within an organization based on their own names:
repository: "^myorgname/{{ zuul.project.short_name }}.*"
-
docker_credentials{}.username
-
docker_images
Type: list A list of images to build. Each item in the list should have:
-
docker_images[].context
The docker build context; this should be a directory underneath build-docker-image.zuul_work_dir.
-
docker_images[].dockerfile
The filename of the dockerfile, present in the context folder, used for building the image. Provide this if you are using a non-standard filename for a specific image.
-
docker_images[].repository
The name of the target repository in dockerhub for the image. Supply this even if the image is not going to be uploaded (it will be tagged with this in the local registry).
-
docker_images[].path
Optional: the directory that should be passed to docker build. Useful for building images with a Dockerfile in the context directory but a source repository elsewhere.
-
docker_images[].build_args
Type: list Optional: a list of values to pass to the docker
--build-arg
parameter.
-
docker_images[].target
Optional: the target for a multi-stage build.
-
docker_images[].tags
Default:['latest']
Type: list A list of tags to be added to the image when promoted.
-
docker_images[].siblings
Default:[]
Type: list A list of sibling projects to be copied into
{{zuul_work_dir}}/.zuul-siblings
. This can be useful to collect multiple projects to be installed within the same Docker context. A-build-arg
calledZUUL_SIBLINGS
will be added with each sibling project. Note that projects here must be listed inrequired-projects
.
-
docker_images[].labels
Default:[]
Type: list A list of labels to attach to the built image, in the form of “key=value”.
-
docker_images[].arch
Default:[]
Type: list A list of architectures to build on. When enabling this on any image, all of them will be built with
docker buildx
.Valid values are
linux/amd64
,linux/arm64
,linux/riscv64
,linux/ppc64le
,linux/s390x
,linux/386
,linux/arm/v7
,linux/arm/v6
.
-
docker_images[].context
- pull-from-intermediate-registry
Pull artifacts from the intermediate registry
This role will pull any artifacts built for changes ahead of this change which have been placed in an intermediate registry into the buildset registry for this buildset.
Run this in a trusted pre-playbook at the start of a job (which, in the case of multiple dependent jobs in a buildset, should be at the root of the job dependency graph).
This requires the run-buildset-registry role already applied. It also requires an externally managed “intermediate” registry operating for the use of Zuul, and it requires “skopeo” and “socat” to be installed on the Zuul executors.
Role Variables
-
buildset_registry
Information about the registry, as returned by run-buildset-registry.
-
buildset_registry.host
The host (IP address) of the registry.
-
buildset_registry.port
The port on which the registry is listening.
-
buildset_registry.username
The username used to access the registry via HTTP basic auth.
-
buildset_registry.password
The password used to access the registry via HTTP basic auth.
-
buildset_registry.cert
The (self-signed) certificate used by the registry.
-
buildset_registry.host
-
intermediate_registry
Information about the registry. This is expected to be provided as a secret.
-
intermediate_registry.host
The host (IP address) of the registry.
-
intermediate_registry.port
The port on which the registry is listening.
-
intermediate_registry.username
The username used to access the registry via HTTP basic auth.
-
intermediate_registry.password
The password used to access the registry via HTTP basic auth.
-
intermediate_registry.host
-
buildset_registry
- push-to-intermediate-registry
Push artifacts to the intermediate registry
This role will push any images built by build-docker-image into an intermediate registry.
Run this in a trusted post-playbook at the end of a job after the image build.
This requires the run-buildset-registry role already applied. It also requires an externally managed “intermediate” registry operating for the use of Zuul, and it requires “skopeo” and “socat” to be installed on the Zuul executors.
Role Variables
-
buildset_registry
Information about the registry, as returned by run-buildset-registry.
-
buildset_registry.host
The host (IP address) of the registry.
-
buildset_registry.port
The port on which the registry is listening.
-
buildset_registry.username
The username used to access the registry via HTTP basic auth.
-
buildset_registry.password
The password used to access the registry via HTTP basic auth.
-
buildset_registry.cert
The (self-signed) certificate used by the registry.
-
buildset_registry.host
-
intermediate_registry
Information about the registry. This is expected to be provided as a secret.
-
intermediate_registry.host
The host (IP address) of the registry.
-
intermediate_registry.port
The port on which the registry is listening.
-
intermediate_registry.username
The username used to access the registry via HTTP basic auth.
-
intermediate_registry.password
The password used to access the registry via HTTP basic auth.
-
intermediate_registry.host
-
buildset_registry
- run-buildset-registry
Runs a container registry for the use of this buildset.
This may be used for a single job running on a single node, or it may be used at the root of a job graph so that multiple jobs running for a single change can share the registry.
Role Variables
-
buildset_registry_root
Default:{{ ansible_user_dir }}/buildset_registry
Path for the registry volumes.
-
buildset_registry_port
Default:5000
The port on which the registry should listen.
-
container_command
Default:docker
The command to use to run the registry container (E.g.,
podman
).
Return Values
-
buildset_registry
Information about the registry.
-
buildset_registry.host
The host (IP address) of the registry.
-
buildset_registry.port
The port on which the registry is listening.
-
buildset_registry.username
The username used to access the registry via HTTP basic auth.
-
buildset_registry.password
The password used to access the registry via HTTP basic auth.
-
buildset_registry.cert
The (self-signed) certificate used by the registry.
-
buildset_registry.host
-
buildset_registry_root
- upload-container-image
Upload one or more container images.
This is one of a collection of roles which are designed to work together to build, upload, and promote container images in a gating context:
build-container-image: Build the images.
Note
Build and upload roles are forthcoming.
The build-container-image role is designed to be used in check and gate pipelines and simply builds the images. It can be used to verify that the build functions, or it can be followed by the use of subsequent roles to upload the images to a registry.
They all accept the same input data, principally a list of dictionaries representing the images to build. YAML anchors can be used to supply the same data to all three jobs.
Use the ensure-docker or ensure-podman role to install Docker or Podman before using these roles.
Role Variables
-
zuul_work_dir
Default:{{ zuul.project.src_dir }}
The project directory. Serves as the base for build-container-image.container_images.context.
-
container_filename
The default container filename name to use. Serves as the base for build-container-image.container_images.container_filename. This allows a global overriding of the container filename name, for example when building all images from different folders with similarily named containerfiles.
If omitted, the default depends on the container command used. Typically, this is
Dockerfile
fordocker
andContainerfile
(with a fallback onDockerfile
) forpodman
.
-
container_command
Default:podman
The command to use when building the image (E.g.,
docker
).
-
container_registry_credentials
Type: dict This is only required for the upload and promote roles. This is expected to be a Zuul Secret in dictionary form. Each key is the name of a registry, and its value a dictionary with information about that registry.
Example:
container_registry_credentials: quay.io: username: foo password: bar
-
container_registry_credentials{}.[registry name]
Type: dict Information about a registry. The key is the registry name, and its value a dict as follows:
-
container_registry_credentials{}.[registry name]{}.username
The registry username.
-
container_registry_credentials{}.[registry name]{}.password
The registry password.
-
container_registry_credentials{}.[registry name]{}.repository
Optional; if supplied this is a regular expression which restricts to what repositories the image may be uploaded. The following example allows projects to upload images to repositories within an organization based on their own names:
repository: "^myorgname/{{ zuul.project.short_name }}.*"
-
container_registry_credentials{}.[registry name]{}.username
-
container_registry_credentials{}.[registry name]
-
container_images
Type: list A list of images to build. Each item in the list should have:
-
container_images[].context
The build context; this should be a directory underneath build-container-image.zuul_work_dir.
-
container_images[].container_filename
The filename of the container file, present in the context folder, used for building the image. Provide this if you are using a non-standard filename for a specific image.
-
container_images[].registry
The name of the target registry (E.g.,
quay.io
). Used by the upload and promote roles.
-
container_images[].repository
The name of the target repository in the registry for the image. Supply this even if the image is not going to be uploaded (it will be tagged with this in the local registry).
-
container_images[].path
Optional: the directory that should be passed to the build command. Useful for building images with a container file in the context directory but a source repository elsewhere.
-
container_images[].build_args
Type: list Optional: a list of values to pass to the
--build-arg
parameter.
-
container_images[].target
Optional: the target for a multi-stage build.
-
container_images[].tags
Default:['latest']
Type: list A list of tags to be added to the image when promoted.
-
container_images[].siblings
Default:[]
Type: list A list of sibling projects to be copied into
{{zuul_work_dir}}/.zuul-siblings
. This can be useful to collect multiple projects to be installed within the same Docker context. A-build-arg
calledZUUL_SIBLINGS
will be added with each sibling project. Note that projects here must be listed inrequired-projects
.
-
container_images[].context
-
upload_container_image_promote
Default:true
Type: bool If
true
(the default), then this role will upload the image(s) to the container registry with special tags designed for use by the promote-container-image role. Set tofalse
to use this role to directly upload images with the final tag (e.g., as part of an un-gated release job).
- upload-docker-image
Upload one or more docker images.
This is one of a collection of roles which are designed to work together to build, upload, and promote docker images in a gating context:
build-docker-image: Build the images.
upload-docker-image: Stage the images on dockerhub.
promote-docker-image: Promote previously uploaded images.
The build-docker-image role is designed to be used in check and gate pipelines and simply builds the images. It can be used to verify that the build functions, or it can be followed by the use of subsequent roles to upload the images to Docker Hub.
The upload-docker-image role uploads the images to Docker Hub, but only with a single tag corresponding to the change ID. This role is designed to be used in a job in a gate pipeline so that the build produced by the gate is staged and can later be promoted to production if the change is successful.
The promote-docker-image role is designed to be used in a promote pipeline. It requires no nodes and runs very quickly on the Zuul executor. It simply re-tags a previously uploaded image for a change with whatever tags are supplied by build-docker-image.docker_images.tags. It also removes the change ID tag from the repository in Docker Hub, and removes any similar change ID tags more than 24 hours old. This keeps the repository tidy in the case that gated changes fail to merge after uploading their staged images.
They all accept the same input data, principally a list of dictionaries representing the images to build. YAML anchors can be used to supply the same data to all three jobs.
Use the ensure-docker role to install Docker before using this role.
Role Variables
-
zuul_work_dir
Default:{{ zuul.project.src_dir }}
The project directory. Serves as the base for build-docker-image.docker_images.context.
-
docker_dockerfile
Default:Dockerfile
The default Dockerfile name to use. Serves as the base for build-docker-image.docker_images.dockerfile. This allows a global overriding of Dockerfile name, for example when building all images from different folders with similarily named dockerfiles.
-
docker_registry
Default:''
The container registry the images should be tagged for, by default zuul will push the image to dockerhub.
-
docker_credentials
Type: dict This is only required for the upload and promote roles. This is expected to be a Zuul Secret with two keys:
-
docker_credentials{}.username
The Docker Hub username.
-
docker_credentials{}.password
The Docker Hub password.
-
docker_credentials{}.repository
Optional; if supplied this is a regular expression which restricts to what repositories the image may be uploaded. The following example allows projects to upload images to repositories within an organization based on their own names:
repository: "^myorgname/{{ zuul.project.short_name }}.*"
-
docker_credentials{}.username
-
docker_images
Type: list A list of images to build. Each item in the list should have:
-
docker_images[].context
The docker build context; this should be a directory underneath build-docker-image.zuul_work_dir.
-
docker_images[].dockerfile
The filename of the dockerfile, present in the context folder, used for building the image. Provide this if you are using a non-standard filename for a specific image.
-
docker_images[].repository
The name of the target repository in dockerhub for the image. Supply this even if the image is not going to be uploaded (it will be tagged with this in the local registry).
-
docker_images[].path
Optional: the directory that should be passed to docker build. Useful for building images with a Dockerfile in the context directory but a source repository elsewhere.
-
docker_images[].build_args
Type: list Optional: a list of values to pass to the docker
--build-arg
parameter.
-
docker_images[].target
Optional: the target for a multi-stage build.
-
docker_images[].tags
Default:['latest']
Type: list A list of tags to be added to the image when promoted.
-
docker_images[].siblings
Default:[]
Type: list A list of sibling projects to be copied into
{{zuul_work_dir}}/.zuul-siblings
. This can be useful to collect multiple projects to be installed within the same Docker context. A-build-arg
calledZUUL_SIBLINGS
will be added with each sibling project. Note that projects here must be listed inrequired-projects
.
-
docker_images[].labels
Default:[]
Type: list A list of labels to attach to the built image, in the form of “key=value”.
-
docker_images[].arch
Default:[]
Type: list A list of architectures to build on. When enabling this on any image, all of them will be built with
docker buildx
.Valid values are
linux/amd64
,linux/arm64
,linux/riscv64
,linux/ppc64le
,linux/s390x
,linux/386
,linux/arm/v7
,linux/arm/v6
.
-
docker_images[].context
-
upload_docker_image_promote
Default:true
Type: bool If
true
(the default), then this role will upload the image(s) to Docker Hub with special tags designed for use by the promote-docker-image role. Set tofalse
to use this role to directly upload images with the final tag (e.g., as part of an un-gated release job).
- use-buildset-registry
Adds a buildset registry to the docker configuration.
Use this role on any host which should use the buildset registry.
Role Variables
-
buildset_registry
Information about the registry, as returned by run-buildset-registry.
-
buildset_registry.host
The host (IP address) of the registry.
-
buildset_registry.port
The port on which the registry is listening.
-
buildset_registry.username
The username used to access the registry via HTTP basic auth.
-
buildset_registry.password
The password used to access the registry via HTTP basic auth.
-
buildset_registry.cert
The (self-signed) certificate used by the registry.
-
buildset_registry.host
-
buildset_registry_docker_user
Default:{{ ansible_user }}
The system user to configure to use the docker registry. The docker configuration file for this user will be updated. By default, the user Ansible is running as.
-
buildset_registry_namespaces
Default:['docker.io', 'quay.io', 'gcr.io']
The namespaces that the buildset registry supports. The buildset registry will be consulted first for images in these namespaces. Any others will be fetched only from their upstream sources.
Add any local or third-party registries necessary here.
The default may change in the future as more general-purpose public registries become known.
-
buildset_registry
- use-docker-mirror
Configure docker to use mirrors if available.
Role Variables
-
mirror_fqdn
Default:{{ zuul_site_mirror_fqdn }}
The base host for mirror servers.
-
docker_mirror
URL to override the generated docker hub mirror url based on ensure-docker.mirror_fqdn.
-
docker_insecure_registries
Default:undefined
Declare this with a list of insecure registries to define the registries which are allowed to communicate with HTTP only or HTTPS with no valid certificate.
-
mirror_fqdn