(Announcing the Change proposal) |
No edit summary |
||
Line 1: | Line 1: | ||
= Smaller Container Base Image (remove sssd-client, util-linux | = Smaller Container Base Image (remove sssd-client, util-linux) = | ||
== Summary == | == Summary == | ||
This change proposes to remove | This change proposes to remove 2 packages (sssd-client, util-linux) from the Container Base Image (including the minimal image). The Fedora Base Image is still quite large compared to other distributions and the tools offered by these packages are not essential in base image. | ||
== Owner == | == Owner == | ||
Line 41: | Line 41: | ||
== Detailed Description == | == Detailed Description == | ||
This is a proposal to make the Fedora Container Base image smaller by remove the following | This is a proposal to make the Fedora Container Base image smaller by remove the following packages: | ||
* sssd-client | * sssd-client | ||
* util-linux | * util-linux | ||
Current size of the base image and minimal base image : | Current size of the base image and minimal base image : | ||
Line 63: | Line 62: | ||
|- | |- | ||
| util-linux || 13018140 | | util-linux || 13018140 | ||
|- | |- | ||
| sssd-client || 317948 | | sssd-client || 317948 | ||
|} | |} | ||
Removing these packages would allow to gain around | Removing these packages would allow to gain around 13MB in both images. | ||
Each of these packages provides useful tools but the main goal of the base image is for building layered images. Each of these packages can easily be added in a layered image if needed. | Each of these packages provides useful tools but the main goal of the base image is for building layered images. Each of these packages can easily be added in a layered image if needed. | ||
Line 78: | Line 75: | ||
util-linux : https://pagure.io/ContainerSIG/container-sig/issue/45 | util-linux : https://pagure.io/ContainerSIG/container-sig/issue/45 | ||
== Feedback == | == Feedback == | ||
<!-- Summarize the feedback from the community and address why you chose not to accept proposed alternatives. This section is optional for all change proposals but is strongly suggested. Incorporating feedback here as it is raised gives FESCo a clearer view of your proposal and leaves a good record for the future. If you get no feedback, that is useful to note in this section as well. For innovative or possibly controversial ideas, consider collecting feedback before you file the change proposal. --> | <!-- Summarize the feedback from the community and address why you chose not to accept proposed alternatives. This section is optional for all change proposals but is strongly suggested. Incorporating feedback here as it is raised gives FESCo a clearer view of your proposal and leaves a good record for the future. If you get no feedback, that is useful to note in this section as well. For innovative or possibly controversial ideas, consider collecting feedback before you file the change proposal. --> | ||
Following feedback received on devel@fedoraproject.org the plan to remove shadow-utils is dropped. This package provides binaries that are used in common scenario in particular creating users to avoid running application as root in the container images. | |||
== Benefit to Fedora == | == Benefit to Fedora == | ||
Line 92: | Line 89: | ||
== Scope == | == Scope == | ||
* Proposal owners: | * Proposal owners: | ||
Explicitly remove the | Explicitly remove the packages from the base image kickstart : https://pagure.io/fedora-kickstarts/blob/main/f/fedora-container-base.ks | ||
* Release engineering: | * Release engineering: | ||
Line 109: | Line 106: | ||
In most cases that will results in adding the following : | In most cases that will results in adding the following : | ||
RUN dnf -y install sssd-client | RUN dnf -y install sssd-client util-linux && dnf clean all | ||
Revision as of 06:55, 9 April 2021
Smaller Container Base Image (remove sssd-client, util-linux)
Summary
This change proposes to remove 2 packages (sssd-client, util-linux) from the Container Base Image (including the minimal image). The Fedora Base Image is still quite large compared to other distributions and the tools offered by these packages are not essential in base image.
Owner
- Name: Clément Verna
- Email: <cverna-at-fedoraproject.org>
Current status
- Targeted release: Fedora Linux 35
- Last updated: 2021-04-09
- FESCo issue: <will be assigned by the Wrangler>
- Tracker bug: <will be assigned by the Wrangler>
- Release notes tracker: <will be assigned by the Wrangler>
Detailed Description
This is a proposal to make the Fedora Container Base image smaller by remove the following packages:
- sssd-client
- util-linux
Current size of the base image and minimal base image :
REPOSITORY | TAG | IMAGE ID | CREATED | SIZE |
---|---|---|---|---|
registry.fedoraproject.org/fedora | 34 | eede0db319cc | 2 days ago | 187 MB |
registry.fedoraproject.org/fedora-minimal | 34 | 4ff120184ee4 | 2 days ago | 122 MB |
The installed size of each package is :
Package | Installed Size |
---|---|
util-linux | 13018140 |
sssd-client | 317948 |
Removing these packages would allow to gain around 13MB in both images.
Each of these packages provides useful tools but the main goal of the base image is for building layered images. Each of these packages can easily be added in a layered image if needed.
More info and discussion happened for each package in the Container SIG tracker
sssd-client : https://pagure.io/ContainerSIG/container-sig/issue/44
util-linux : https://pagure.io/ContainerSIG/container-sig/issue/45
Feedback
Following feedback received on devel@fedoraproject.org the plan to remove shadow-utils is dropped. This package provides binaries that are used in common scenario in particular creating users to avoid running application as root in the container images.
Benefit to Fedora
Reducing the size of the base image makes it a more interesting choice for users to build layered images using Fedora. The base image is also heavily used by CI systems so reducing the size makes it faster to be pulled. Removing packages from the base image also reduces the number of CVEs our users have to care about.
Scope
- Proposal owners:
Explicitly remove the packages from the base image kickstart : https://pagure.io/fedora-kickstarts/blob/main/f/fedora-container-base.ks
- Release engineering:
Approve and Merge the kickstart change.
- Policies and guidelines: N/A (not needed for this Change)
- Trademark approval: N/A (not needed for this Change)
- Alignment with Objectives: N/A
Upgrade/compatibility impact
Some layered images that relied on these packages being provided by the base image will fail to build. These images will now have to make sure to install the required package in their Container/Dockerfile.
In most cases that will results in adding the following :
RUN dnf -y install sssd-client util-linux && dnf clean all
How To Test
Once implemented, one can test this change by pulling the rawhide image and verify that none of the above packages are present in the image.
User Experience
See Upgrade/compatibility impact
Dependencies
Contingency Plan
Kickstart changes can simply be reverted and packages added back in the base image.