Skip to content

Commit

Permalink
build: restore packages from base repos in versions
Browse files Browse the repository at this point in the history
Even if these packages are no longer downloaded by the buildchain,
we still want to keep track of them and maybe enforce the versions
through versions.json, generated from this list.

Refs: #1552
  • Loading branch information
alexandre-allard authored and gdemonet committed Oct 28, 2019
1 parent 2d8a4e2 commit 7f8af96
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions buildchain/buildchain/versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,22 +305,36 @@ def deb_full_name(self) -> str:
PackageVersion(name='kubelet', version=K8S_VERSION),
# Latest packages
PackageVersion(name='containerd'),
PackageVersion(name='coreutils'),
PackageVersion(name='cri-tools'),
PackageVersion(name='e2fsprogs'),
PackageVersion(name='ebtables'),
PackageVersion(name='ethtool'),
PackageVersion(name='genisoimage'),
PackageVersion(name='iproute'),
PackageVersion(name='iptables'),
PackageVersion(name='kubernetes-cni'),
PackageVersion(name='m2crypto'),
PackageVersion(name='runc'),
PackageVersion(name='salt-minion', version=SALT_VERSION),
PackageVersion(name='socat'),
PackageVersion(name='sos'), # TODO download built package dependencies
PackageVersion(name='util-linux'),
PackageVersion(name='xfsprogs'),
),
'redhat': (
PackageVersion(
name='calico-cni-plugin',
version=CALICO_VERSION,
release='1.el7'
),
PackageVersion(name='container-selinux'), # TODO #1710
PackageVersion(
name='metalk8s-sosreport',
version=SHORT_VERSION,
release='1.el7'
),
PackageVersion(name='yum-plugin-versionlock'),
),
'debian': (
PackageVersion(
Expand Down

0 comments on commit 7f8af96

Please sign in to comment.