Skip to content

Commit baeeb5c

Browse files
authored
Merge pull request #17694 from hakman/drop-more-packages
Drop bridge-utils and conntrack packages
2 parents 093cb67 + 2c99d7f commit baeeb5c

File tree

2 files changed

+41
-5
lines changed

2 files changed

+41
-5
lines changed

docs/releases/1.35-NOTES.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
## Release notes for kOps 1.35 series
2+
3+
**⚠ kOps 1.35 has not been released yet! ⚠**
4+
5+
This is a document to gather the release notes prior to the release.
6+
7+
# Significant changes
8+
9+
* `bridge-utils`, `conntrack`, `pigz`, `libltdl` are no longer installed by default.
10+
11+
## Some Feature
12+
13+
* TODO
14+
15+
## AWS
16+
17+
## GCP
18+
19+
* TODO
20+
21+
## Openstack
22+
23+
* TODO
24+
25+
# Other changes of note
26+
27+
* TODO
28+
29+
# Breaking changes
30+
31+
## Other breaking changes
32+
33+
# Known Issues
34+
35+
* TODO
36+
37+
# Deprecations
38+
39+
* Support for Kubernetes version 1.29 is removed in kOps 1.35.
40+
41+
* Support for Kubernetes version 1.30 is deprecated and will be removed in kOps 1.36.

nodeup/pkg/model/packages.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,6 @@ func (b *PackagesBuilder) Build(c *fi.NodeupModelBuilderContext) error {
3636
// kubelet needs:
3737
// conntrack - kops #5671
3838
if b.Distribution.IsDebianFamily() {
39-
// From containerd: https://github.com/containerd/cri/blob/master/contrib/ansible/tasks/bootstrap_ubuntu.yaml
40-
c.AddTask(&nodetasks.Package{Name: "bridge-utils"})
41-
c.AddTask(&nodetasks.Package{Name: "conntrack"})
4239
c.AddTask(&nodetasks.Package{Name: "iptables"})
4340
c.AddTask(&nodetasks.Package{Name: "libapparmor1"})
4441
c.AddTask(&nodetasks.Package{Name: "libseccomp2"})
@@ -51,8 +48,6 @@ func (b *PackagesBuilder) Build(c *fi.NodeupModelBuilderContext) error {
5148
c.EnsureTask(&nodetasks.Package{Name: additionalPackage})
5249
}
5350
} else if b.Distribution.IsRHELFamily() {
54-
// From containerd: https://github.com/containerd/cri/blob/master/contrib/ansible/tasks/bootstrap_centos.yaml
55-
c.AddTask(&nodetasks.Package{Name: "conntrack-tools"})
5651
if b.Distribution == distributions.DistributionAmazonLinux2023 {
5752
// install iptables-nft in al2023 (NOT the iptables-legacy!)
5853
c.AddTask(&nodetasks.Package{Name: "iptables-nft"})

0 commit comments

Comments
 (0)