| Giorgi Lekveishvili | 7fb28bf | 2023-06-24 19:51:16 +0400 | [diff] [blame^] | 1 | package main |
| 2 | |||||
| 3 | import ( | ||||
| 4 | "github.com/giolekva/pcloud/core/installer" | ||||
| 5 | ) | ||||
| 6 | |||||
| 7 | func newNSCreator() (installer.NamespaceCreator, error) { | ||||
| 8 | if rootFlags.kubeConfig != "" { | ||||
| 9 | return installer.NewOutOfClusterNamespaceCreator(rootFlags.kubeConfig) | ||||
| 10 | } else { | ||||
| 11 | return installer.NewInClusterNamespaceCreator() | ||||
| 12 | } | ||||
| 13 | } | ||||