genericapiserver: fix imports
This commit is contained in:
parent
dc90e9a003
commit
855c38d53e
|
|
@ -15,4 +15,4 @@ limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Package negotation contains media type negotiation logic.
|
// Package negotation contains media type negotiation logic.
|
||||||
package negotiation // import "k8s.io/apiserver/pkg/api/handlers/negotiation"
|
package negotiation // import "k8s.io/apiserver/pkg/endpoints/handlers/negotiation"
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ import (
|
||||||
|
|
||||||
"k8s.io/apimachinery/pkg/types"
|
"k8s.io/apimachinery/pkg/types"
|
||||||
"k8s.io/apiserver/pkg/authentication/user"
|
"k8s.io/apiserver/pkg/authentication/user"
|
||||||
genericapirequest "k8s.io/apiserver/pkg/api/request"
|
genericapirequest "k8s.io/apiserver/pkg/endpoints/request"
|
||||||
"k8s.io/kubernetes/pkg/api"
|
"k8s.io/kubernetes/pkg/api"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -17,4 +17,4 @@ limitations under the License.
|
||||||
// Package request contains everything around extracting info from
|
// Package request contains everything around extracting info from
|
||||||
// a http request object.
|
// a http request object.
|
||||||
// TODO: this package is temporary. Handlers must move into pkg/apiserver/handlers to avoid dependency cycle
|
// TODO: this package is temporary. Handlers must move into pkg/apiserver/handlers to avoid dependency cycle
|
||||||
package request // import "k8s.io/apiserver/pkg/api/request"
|
package request // import "k8s.io/apiserver/pkg/endpoints/request"
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,6 @@ limitations under the License.
|
||||||
|
|
||||||
// Package healthz implements basic http server health checking.
|
// Package healthz implements basic http server health checking.
|
||||||
// Usage:
|
// Usage:
|
||||||
// import "k8s.io/apiserver/pkg/healthz"
|
// import "k8s.io/apiserver/pkg/server/healthz"
|
||||||
// healthz.DefaultHealthz()
|
// healthz.DefaultHealthz()
|
||||||
package healthz // import "k8s.io/apiserver/pkg/healthz"
|
package healthz // import "k8s.io/apiserver/pkg/server/healthz"
|
||||||
|
|
|
||||||
|
|
@ -16,4 +16,4 @@ limitations under the License.
|
||||||
|
|
||||||
// Package httplog contains a helper object and functions to maintain a log
|
// Package httplog contains a helper object and functions to maintain a log
|
||||||
// along with an http response.
|
// along with an http response.
|
||||||
package httplog // import "k8s.io/apiserver/pkg/httplog"
|
package httplog // import "k8s.io/apiserver/pkg/server/httplog"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue