mirror of
https://github.com/arangodb/kube-arangodb.git
synced 2024-12-14 11:57:37 +00:00
[Bugfix] Unify yaml packages (#1055)
This commit is contained in:
parent
4333b434d4
commit
c7ea7cf682
3 changed files with 4 additions and 3 deletions
|
@ -31,6 +31,7 @@
|
|||
- (Feature) Member restarts metric
|
||||
- (Bugfix) Infinite loop fix in ArangoD AsyncClient
|
||||
- (Bugfix) Add Panic Handler
|
||||
- (Bugfix) Unify yaml packages
|
||||
|
||||
## [1.2.13](https://github.com/arangodb/kube-arangodb/tree/1.2.13) (2022-06-07)
|
||||
- (Bugfix) Fix arangosync members state inspection
|
||||
|
|
4
go.mod
4
go.mod
|
@ -97,10 +97,10 @@ require (
|
|||
google.golang.org/appengine v1.6.7 // indirect
|
||||
google.golang.org/protobuf v1.27.1 // indirect
|
||||
gopkg.in/inf.v0 v0.9.1 // indirect
|
||||
gopkg.in/yaml.v2 v2.4.0
|
||||
gopkg.in/yaml.v2 v2.4.0 // indirect
|
||||
k8s.io/klog/v2 v2.9.0 // indirect
|
||||
k8s.io/kube-openapi v0.0.0-20211110012726-3cc51fd1e909 // indirect
|
||||
k8s.io/utils v0.0.0-20210521133846-da695404a2bc // indirect
|
||||
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
|
||||
sigs.k8s.io/yaml v1.2.0 // indirect
|
||||
sigs.k8s.io/yaml v1.2.0
|
||||
)
|
||||
|
|
|
@ -25,9 +25,9 @@ import (
|
|||
"strings"
|
||||
"time"
|
||||
|
||||
"gopkg.in/yaml.v2"
|
||||
core "k8s.io/api/core/v1"
|
||||
meta "k8s.io/apimachinery/pkg/apis/meta/v1"
|
||||
"sigs.k8s.io/yaml"
|
||||
|
||||
certificates "github.com/arangodb-helper/go-certificates"
|
||||
|
||||
|
|
Loading…
Reference in a new issue