| 11 | var _ hconf.DataSource = (*kubernetesConfig)(nil) |
| 12 | |
| 13 | type kubernetesConfig struct { |
| 14 | client *kubernetes.Clientset |
| 15 | options *options |
| 16 | } |
| 17 | |
| 18 | func NewKubernetesConfig(cli *kubernetes.Clientset, opts ...Option) (hconf.DataSource, error) { |
| 19 | if cli == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected