diff --git a/src/k8s/pkg/k8sd/features/implementation_moonray.go b/src/k8s/pkg/k8sd/features/implementation_moonray.go index 9e6309ff0..cbaacad91 100644 --- a/src/k8s/pkg/k8sd/features/implementation_moonray.go +++ b/src/k8s/pkg/k8sd/features/implementation_moonray.go @@ -4,10 +4,10 @@ package features import ( "github.com/canonical/k8s/pkg/k8sd/features/calico" - "github.com/canonical/k8s/pkg/k8sd/features/cilium" "github.com/canonical/k8s/pkg/k8sd/features/contour" "github.com/canonical/k8s/pkg/k8sd/features/coredns" "github.com/canonical/k8s/pkg/k8sd/features/localpv" + "github.com/canonical/k8s/pkg/k8sd/features/metallb" metrics_server "github.com/canonical/k8s/pkg/k8sd/features/metrics-server" ) @@ -16,7 +16,7 @@ import ( var Implementation Interface = &implementation{ applyDNS: coredns.ApplyDNS, applyNetwork: calico.ApplyNetwork, - applyLoadBalancer: cilium.ApplyLoadBalancer, + applyLoadBalancer: metallb.ApplyLoadBalancer, applyIngress: contour.ApplyIngress, applyGateway: contour.ApplyGateway, applyMetricsServer: metrics_server.ApplyMetricsServer,