File tree Expand file tree Collapse file tree 6 files changed +7
-8
lines changed Expand file tree Collapse file tree 6 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 4
4
5
5
require (
6
6
github.com/blang/semver/v4 v4.0.0
7
- github.com/ghodss/yaml v1.0.0
8
7
github.com/go-bindata/go-bindata/v3 v3.1.3
9
8
github.com/google/cel-go v0.15.3
10
9
github.com/sirupsen/logrus v1.9.2
@@ -16,6 +15,7 @@ require (
16
15
k8s.io/apimachinery v0.27.7
17
16
k8s.io/client-go v0.27.7
18
17
sigs.k8s.io/controller-runtime v0.15.0
18
+ sigs.k8s.io/yaml v1.3.0
19
19
)
20
20
21
21
require (
@@ -91,5 +91,4 @@ require (
91
91
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.1.2 // indirect
92
92
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
93
93
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
94
- sigs.k8s.io/yaml v1.3.0 // indirect
95
94
)
Original file line number Diff line number Diff line change @@ -78,7 +78,6 @@ github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.
78
78
github.com/envoyproxy/protoc-gen-validate v0.1.0 /go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c =
79
79
github.com/felixge/httpsnoop v1.0.3 h1:s/nj+GCswXYzN5v2DpNMuMQYe+0DDwt5WVCU6CWBdXk =
80
80
github.com/felixge/httpsnoop v1.0.3 /go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U =
81
- github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk =
82
81
github.com/ghodss/yaml v1.0.0 /go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04 =
83
82
github.com/go-bindata/go-bindata/v3 v3.1.3 h1:F0nVttLC3ws0ojc7p60veTurcOm//D4QBODNM7EGrCI =
84
83
github.com/go-bindata/go-bindata/v3 v3.1.3 /go.mod h1:1/zrpXsLD8YDIbhZRqXzm1Ghc7NhEvIN9+Z6R5/xH4I =
Original file line number Diff line number Diff line change 9
9
v1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
10
10
"k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1"
11
11
12
- "github.com/ghodss /yaml"
12
+ "sigs.k8s.io /yaml"
13
13
)
14
14
15
15
func TestValidateCRD (t * testing.T ) {
Original file line number Diff line number Diff line change 8
8
9
9
operatorsv1alpha1 "github.com/operator-framework/api/pkg/operators/v1alpha1"
10
10
11
- "github.com/ghodss/yaml"
12
11
"github.com/operator-framework/api/pkg/validation/errors"
13
12
"k8s.io/apimachinery/pkg/runtime/schema"
13
+ "sigs.k8s.io/yaml"
14
14
)
15
15
16
16
func TestValidateCSV (t * testing.T ) {
Original file line number Diff line number Diff line change 1
1
package internal
2
2
3
3
import (
4
- "github.com/ghodss/yaml"
5
4
"io/ioutil"
6
- "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
7
5
"testing"
6
+
7
+ "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
8
+ "sigs.k8s.io/yaml"
8
9
)
9
10
10
11
func TestValidateObject (t * testing.T ) {
Original file line number Diff line number Diff line change 5
5
"path/filepath"
6
6
"testing"
7
7
8
- "github.com/ghodss/yaml"
9
8
operatorsv1 "github.com/operator-framework/api/pkg/operators/v1"
10
9
"github.com/operator-framework/api/pkg/validation/errors"
10
+ "sigs.k8s.io/yaml"
11
11
)
12
12
13
13
func TestValidateOperatorGroup (t * testing.T ) {
You can’t perform that action at this time.
0 commit comments