File tree Expand file tree Collapse file tree 9 files changed +9
-9
lines changed Expand file tree Collapse file tree 9 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 5
5
"fmt"
6
6
"io"
7
7
8
- "github.com/openshift/openshift-apiserver/pkg/image/apiserver/internalimageutil "
8
+ internalimageutil "github.com/openshift/openshift-apiserver/pkg/image/apiserver/internal/imageutil "
9
9
10
10
"k8s.io/klog/v2"
11
11
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ import (
33
33
"github.com/openshift/library-go/pkg/image/imageutil"
34
34
imageref "github.com/openshift/library-go/pkg/image/reference"
35
35
imageapi "github.com/openshift/openshift-apiserver/pkg/image/apis/image"
36
- "github.com/openshift/openshift-apiserver/pkg/image/apiserver/internalimageutil "
36
+ internalimageutil "github.com/openshift/openshift-apiserver/pkg/image/apiserver/internal/imageutil "
37
37
)
38
38
39
39
// Interface loads images into an image stream import request.
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import (
16
16
imagev1 "github.com/openshift/api/image/v1"
17
17
imageapi "github.com/openshift/openshift-apiserver/pkg/image/apis/image"
18
18
"github.com/openshift/openshift-apiserver/pkg/image/apis/image/validation"
19
- "github.com/openshift/openshift-apiserver/pkg/image/apiserver/internalimageutil "
19
+ internalimageutil "github.com/openshift/openshift-apiserver/pkg/image/apiserver/internal/imageutil "
20
20
)
21
21
22
22
// managedSignatureAnnotation used to be set by image signature import controller as a signature annotation.
Original file line number Diff line number Diff line change 5
5
"fmt"
6
6
"strings"
7
7
8
- "github.com/openshift/openshift-apiserver/pkg/image/apiserver/internalimageutil "
8
+ internalimageutil "github.com/openshift/openshift-apiserver/pkg/image/apiserver/internal/imageutil "
9
9
10
10
authorizationapi "k8s.io/api/authorization/v1"
11
11
kerrors "k8s.io/apimachinery/pkg/api/errors"
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import (
15
15
"github.com/openshift/library-go/pkg/image/imageutil"
16
16
17
17
imageapi "github.com/openshift/openshift-apiserver/pkg/image/apis/image"
18
- "github.com/openshift/openshift-apiserver/pkg/image/apiserver/internalimageutil "
18
+ internalimageutil "github.com/openshift/openshift-apiserver/pkg/image/apiserver/internal/imageutil "
19
19
"github.com/openshift/openshift-apiserver/pkg/image/apiserver/registry/image"
20
20
"github.com/openshift/openshift-apiserver/pkg/image/apiserver/registry/imagestream"
21
21
imageprinters "github.com/openshift/openshift-apiserver/pkg/image/printers/internalversion"
Original file line number Diff line number Diff line change 9
9
"k8s.io/klog/v2"
10
10
11
11
imageapi "github.com/openshift/openshift-apiserver/pkg/image/apis/image"
12
- "github.com/openshift/openshift-apiserver/pkg/image/apiserver/internalimageutil "
12
+ internalimageutil "github.com/openshift/openshift-apiserver/pkg/image/apiserver/internal/imageutil "
13
13
)
14
14
15
15
type cachedImageCreater struct {
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ import (
39
39
"github.com/openshift/openshift-apiserver/pkg/image/apis/image/validation"
40
40
"github.com/openshift/openshift-apiserver/pkg/image/apis/image/validation/whitelist"
41
41
"github.com/openshift/openshift-apiserver/pkg/image/apiserver/importer"
42
- "github.com/openshift/openshift-apiserver/pkg/image/apiserver/internalimageutil "
42
+ internalimageutil "github.com/openshift/openshift-apiserver/pkg/image/apiserver/internal/imageutil "
43
43
"github.com/openshift/openshift-apiserver/pkg/image/apiserver/registry/imagestream"
44
44
"github.com/openshift/runtime-utils/pkg/registries"
45
45
)
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import (
20
20
imagev1 "github.com/openshift/api/image/v1"
21
21
imagereference "github.com/openshift/library-go/pkg/image/reference"
22
22
imageapi "github.com/openshift/openshift-apiserver/pkg/image/apis/image"
23
- "github.com/openshift/openshift-apiserver/pkg/image/apiserver/internalimageutil "
23
+ internalimageutil "github.com/openshift/openshift-apiserver/pkg/image/apiserver/internal/imageutil "
24
24
"github.com/openshift/openshift-apiserver/pkg/image/apiserver/registry/image"
25
25
"github.com/openshift/openshift-apiserver/pkg/image/apiserver/registry/imagestream"
26
26
"github.com/openshift/openshift-apiserver/pkg/image/apiserver/registryhostname"
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ import (
30
30
imageapi "github.com/openshift/openshift-apiserver/pkg/image/apis/image"
31
31
"github.com/openshift/openshift-apiserver/pkg/image/apis/image/validation/fake"
32
32
admfake "github.com/openshift/openshift-apiserver/pkg/image/apiserver/admission/fake"
33
- "github.com/openshift/openshift-apiserver/pkg/image/apiserver/internalimageutil "
33
+ internalimageutil "github.com/openshift/openshift-apiserver/pkg/image/apiserver/internal/imageutil "
34
34
"github.com/openshift/openshift-apiserver/pkg/image/apiserver/registry/image"
35
35
imageetcd "github.com/openshift/openshift-apiserver/pkg/image/apiserver/registry/image/etcd"
36
36
"github.com/openshift/openshift-apiserver/pkg/image/apiserver/registry/imagestream"
You can’t perform that action at this time.
0 commit comments