File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -19,14 +19,14 @@ require (
19
19
github.com/spf13/cobra v1.9.1
20
20
github.com/spf13/viper v1.20.1
21
21
github.com/stretchr/testify v1.10.0
22
- gopkg.in/yaml.v3 v3.0.1
23
22
k8s.io/api v0.32.3
24
23
k8s.io/apimachinery v0.32.3
25
24
k8s.io/client-go v0.32.3
26
25
k8s.io/component-base v0.32.3
27
26
k8s.io/klog/v2 v2.130.1
28
27
k8s.io/sample-controller v0.32.3
29
28
k8s.io/utils v0.0.0-20241104163129-6fe5fd82f078
29
+ sigs.k8s.io/yaml v1.4.0
30
30
)
31
31
32
32
require (
@@ -236,11 +236,11 @@ require (
236
236
gopkg.in/inf.v0 v0.9.1 // indirect
237
237
gopkg.in/warnings.v0 v0.1.2 // indirect
238
238
gopkg.in/yaml.v2 v2.4.0 // indirect
239
+ gopkg.in/yaml.v3 v3.0.1 // indirect
239
240
inet.af/netaddr v0.0.0-20230525184311-b8eac61e914a // indirect
240
241
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
241
242
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
242
243
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect
243
- sigs.k8s.io/yaml v1.4.0 // indirect
244
244
)
245
245
246
246
tool (
Original file line number Diff line number Diff line change @@ -25,8 +25,8 @@ import (
25
25
26
26
"github.com/fsnotify/fsnotify"
27
27
"github.com/spf13/viper"
28
- "gopkg.in/yaml.v3"
29
28
"k8s.io/klog/v2"
29
+ yaml "sigs.k8s.io/yaml/goyaml.v3"
30
30
31
31
"k8s.io/kube-state-metrics/v2/pkg/app"
32
32
"k8s.io/kube-state-metrics/v2/pkg/options"
Original file line number Diff line number Diff line change @@ -33,11 +33,11 @@ import (
33
33
34
34
"github.com/go-logr/logr"
35
35
36
- "gopkg.in/yaml.v3"
37
36
"k8s.io/client-go/kubernetes"
38
37
_ "k8s.io/client-go/plugin/pkg/client/auth" // Initialize common client auth plugins.
39
38
"k8s.io/client-go/tools/clientcmd"
40
39
"k8s.io/klog/v2"
40
+ yaml "sigs.k8s.io/yaml/goyaml.v3"
41
41
42
42
"github.com/KimMachineGun/automemlimit/memlimit"
43
43
"github.com/oklog/run"
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ import (
22
22
"testing"
23
23
24
24
"github.com/stretchr/testify/assert"
25
- "gopkg.in/yaml.v3"
26
25
"k8s.io/klog/v2"
26
+ yaml "sigs.k8s.io/yaml/goyaml.v3"
27
27
)
28
28
29
29
//go:embed example_config.yaml
You can’t perform that action at this time.
0 commit comments