-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move pkg/k8sutil to internal/k8sutil #3475
Move pkg/k8sutil to internal/k8sutil #3475
Conversation
Remove all public APIs from SDK to prepare for v1.0.0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing fragment since is a breaking change
Otherwise, it is ok.
/lgtm
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm
Should we combine |
@joelanford Good point, I would say yes. I'll move it to |
New changes are detected. LGTM label has been removed. |
Introduces our own getWatchNamespace func See operator-framework/operator-sdk#3475
Introduces our own getWatchNamespace func See operator-framework/operator-sdk#3475
Introduces our own getWatchNamespace func See operator-framework/operator-sdk#3475
k8sutil is no longer exported by the Operator SDK (see <operator-framework/operator-sdk#3475>). Instead of using k8sutil.GetWatchNamespace(), use our own implementation, as explained on https://sdk.operatorframework.io/docs/building-operators/golang/operator-scope/#configuring-namespace-scoped-operators Signed-off-by: Stephen Kitt <skitt@redhat.com>
k8sutil is no longer exported by the Operator SDK (see <operator-framework/operator-sdk#3475>). Instead of using k8sutil.GetWatchNamespace(), use our own implementation, as explained on https://sdk.operatorframework.io/docs/building-operators/golang/operator-scope/#configuring-namespace-scoped-operators Signed-off-by: Stephen Kitt <skitt@redhat.com>
k8sutil is no longer exported by the Operator SDK (see <operator-framework/operator-sdk#3475>). Instead of using k8sutil.GetWatchNamespace(), use our own implementation, as explained on https://sdk.operatorframework.io/docs/building-operators/golang/operator-scope/#configuring-namespace-scoped-operators Signed-off-by: Stephen Kitt <skitt@redhat.com>
Description of the change:
Move
pkg/k8sutil
tointernal/k8sutil
to remove public APIs forv1.0.0
releaseMotivation for the change:
Related to #3327