blob: d06ae597d2e0ca3e07e117ee110c79ca51f5cb17 [file] [log] [blame]
Giorgi Lekveishvili7fb28bf2023-06-24 19:51:16 +04001package main
2
3import (
4 "github.com/giolekva/pcloud/core/installer"
5)
6
7func newNSCreator() (installer.NamespaceCreator, error) {
Giorgi Lekveishvilicd9e42c2023-12-13 09:49:44 +04008 return installer.NewNamespaceCreator(rootFlags.kubeConfig)
9}
10
11func newZoneFetcher() (installer.ZoneStatusFetcher, error) {
12 return installer.NewZoneStatusFetcher(rootFlags.kubeConfig)
Giorgi Lekveishvili7fb28bf2023-06-24 19:51:16 +040013}