You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When implementing kubernetes-sigs/kubebuilder#722 I'm noticing that it would help to reduce the amount of dependencies that need to be imported to mutate main.go to support scaffolding.
// alias.goimport (
// ... other imports
cfg "sigs.k8s.io/controller-runtime/pkg/config"
)
var (
// ... other aliases// ConfigFile returns the cfg.File function for deferred config file loading,// this is passed into Options{}.From() to populate the Options fields for// the manager.ConfigFile=cfg.File
)
When implementing kubernetes-sigs/kubebuilder#722 I'm noticing that it would help to reduce the amount of dependencies that need to be imported to mutate
main.go
to support scaffolding.Ref #895
The text was updated successfully, but these errors were encountered: