Remove dbus dependency

This commit is contained in:
Bharath Vedartham 2021-03-20 15:06:10 +05:30
parent 1b7dd3b5b8
commit 26319c6e96
1 changed files with 0 additions and 7 deletions

View File

@ -126,13 +126,6 @@ func (t *ProtokubeBuilder) Build(c *fi.ModelBuilderContext) error {
}
c.AddTask(service)
// DBUS is needed for the /var/run/dbus mount on kope.io images (based on Debian 9),
// at least until we can move to etcd-manager or start protokube as a service
// See https://github.com/kubernetes/kops/issues/10122#issuecomment-752969613
if t.Distribution == distributions.DistributionDebian9 {
c.AddTask(&nodetasks.Package{Name: "dbus"})
}
return nil
}