File tree Expand file tree Collapse file tree 17 files changed +10
-992
lines changed
staging/operator-registry
operator-framework/operator-registry/pkg Expand file tree Collapse file tree 17 files changed +10
-992
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,6 @@ require (
85
85
github.com/felixge/httpsnoop v1.0.3 // indirect
86
86
github.com/fsnotify/fsnotify v1.6.0 // indirect
87
87
github.com/fvbommel/sortorder v1.0.1 // indirect
88
- github.com/ghodss/yaml v1.0.0 // indirect
89
88
github.com/go-air/gini v1.0.4 // indirect
90
89
github.com/go-errors/errors v1.4.2 // indirect
91
90
github.com/go-git/gcfg v1.5.0 // indirect
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ require (
9
9
github.com/containers/image/v5 v5.28.0
10
10
github.com/docker/cli v23.0.5+incompatible
11
11
github.com/docker/distribution v2.8.2+incompatible
12
- github.com/ghodss/yaml v1.0.0
13
12
github.com/golang-migrate/migrate/v4 v4.16.1
14
13
github.com/golang/mock v1.6.0
15
14
github.com/google/go-cmp v0.6.0
@@ -23,7 +22,7 @@ require (
23
22
github.com/onsi/gomega v1.27.10
24
23
github.com/opencontainers/go-digest v1.0.0
25
24
github.com/opencontainers/image-spec v1.1.0-rc4
26
- github.com/operator-framework/api v0.19 .0
25
+ github.com/operator-framework/api v0.20 .0
27
26
github.com/otiai10/copy v1.2.0
28
27
github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
29
28
github.com/pkg/errors v0.9.1
Original file line number Diff line number Diff line change @@ -165,7 +165,6 @@ github.com/garyburd/redigo v0.0.0-20150301180006-535138d7bcd7/go.mod h1:NR3MbYis
165
165
github.com/garyburd/redigo v1.6.0 h1:0VruCpn7yAIIu7pWVClQC8wxCJEcG3nyzpMSHKi1PQc =
166
166
github.com/garyburd/redigo v1.6.0 /go.mod h1:NR3MbYisc3/PwhQ00EMzDiPmrwpPxAn5GI05/YaO1SY =
167
167
github.com/ghodss/yaml v0.0.0-20150909031657-73d445a93680 /go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04 =
168
- github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk =
169
168
github.com/ghodss/yaml v1.0.0 /go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04 =
170
169
github.com/gliderlabs/ssh v0.2.2 /go.mod h1:U7qILu1NlMHj9FlMhZLlkCdDnU1DBEAqr0aevW3Awn0 =
171
170
github.com/go-git/gcfg v1.5.0 h1:Q5ViNfGF8zFgyJWPqYwA7qGFoMTEiBmdlkcfRmpIMa4 =
@@ -449,8 +448,8 @@ github.com/opencontainers/runc v1.1.9 h1:XR0VIHTGce5eWPkaPesqTBrhW2yAcaraWfsEalN
449
448
github.com/opencontainers/runc v1.1.9 /go.mod h1:CbUumNnWCuTGFukNXahoo/RFBZvDAgRh/smNYNOhA50 =
450
449
github.com/opencontainers/runtime-spec v1.1.0 h1:HHUyrt9mwHUjtasSbXSMvs4cyFxh+Bll4AjJ9odEGpg =
451
450
github.com/opencontainers/runtime-spec v1.1.0 /go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0 =
452
- github.com/operator-framework/api v0.19 .0 h1:QU1CTJU+CufoeneA5rsNlP/uP96s8vDHWUYDFZTauzA =
453
- github.com/operator-framework/api v0.19 .0 /go.mod h1:SCCslqke6AVOJ5JM+NqNE1CHuAgJLScsL66pnPaSMXs =
451
+ github.com/operator-framework/api v0.20 .0 h1:A2YCRhr+6s0k3pRJacnwjh1Ue8BqjIGuQ2jvPg9XCB4 =
452
+ github.com/operator-framework/api v0.20 .0 /go.mod h1:rXPOhrQ6mMeXqCmpDgt1ALoar9ZlHL+Iy5qut9R99a4 =
454
453
github.com/otiai10/copy v1.2.0 h1:HvG945u96iNadPoG2/Ja2+AUJeW5YuFQMixq9yirC+k =
455
454
github.com/otiai10/copy v1.2.0 /go.mod h1:rrF5dJ5F0t/EWSYODDu4j9/vEeYHMkc8jt0zJChqQWw =
456
455
github.com/otiai10/curr v0.0.0-20150429015615-9b4961190c95 /go.mod h1:9qAhocn7zKJG+0mI8eUu6xqkFDYS2kb2saOteoSB3cE =
Original file line number Diff line number Diff line change @@ -6,12 +6,12 @@ import (
6
6
"os"
7
7
"regexp"
8
8
9
- "github.com/ghodss/yaml"
10
9
"github.com/sirupsen/logrus"
11
10
batchv1 "k8s.io/api/batch/v1"
12
11
corev1 "k8s.io/api/core/v1"
13
12
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
14
13
"k8s.io/client-go/kubernetes"
14
+ "sigs.k8s.io/yaml"
15
15
16
16
"github.com/operator-framework/operator-registry/pkg/client"
17
17
"github.com/operator-framework/operator-registry/pkg/lib/bundle"
Original file line number Diff line number Diff line change 8
8
"path/filepath"
9
9
"strings"
10
10
11
- y "github.com/ghodss/yaml"
12
11
log "github.com/sirupsen/logrus"
13
12
apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
14
13
apiextensionsv1beta1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1"
@@ -18,6 +17,7 @@ import (
18
17
"k8s.io/apimachinery/pkg/runtime"
19
18
"k8s.io/apimachinery/pkg/util/validation/field"
20
19
k8syaml "k8s.io/apimachinery/pkg/util/yaml"
20
+ y "sigs.k8s.io/yaml"
21
21
22
22
"github.com/operator-framework/api/pkg/manifests"
23
23
v1 "github.com/operator-framework/api/pkg/operators/v1alpha1"
Original file line number Diff line number Diff line change 6
6
"sort"
7
7
"testing"
8
8
9
- "github.com/ghodss /yaml"
9
+ "sigs.k8s.io /yaml"
10
10
11
11
pregistry "github.com/operator-framework/operator-registry/pkg/registry"
12
12
"github.com/operator-framework/operator-registry/pkg/sqlite"
Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ import (
5
5
"fmt"
6
6
"strings"
7
7
8
- "github.com/ghodss/yaml"
9
8
"github.com/sirupsen/logrus"
10
9
v1 "k8s.io/api/core/v1"
11
10
"k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1"
12
11
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
13
12
"k8s.io/apimachinery/pkg/runtime"
14
13
utilerrors "k8s.io/apimachinery/pkg/util/errors"
14
+ "sigs.k8s.io/yaml"
15
15
16
16
"github.com/operator-framework/operator-registry/pkg/registry"
17
17
)
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments