Skip to content

Commit

Permalink
Update Kubernetes v1.18.9 dependencies (#36)
Browse files Browse the repository at this point in the history
Signed-off-by: 1gtm <1gtm@appscode.com>
  • Loading branch information
1gtm committed Oct 14, 2020
1 parent 40f6162 commit e1893db
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 23 deletions.
2 changes: 1 addition & 1 deletion go.mod
Expand Up @@ -12,7 +12,7 @@ require (
k8s.io/client-go v0.18.9
k8s.io/component-base v0.18.9
k8s.io/kubectl v0.18.9
kmodules.xyz/client-go v0.0.0-20201011221802-3180ab67d845
kmodules.xyz/client-go v0.0.0-20201013083546-b17c1e15f1a3
kmodules.xyz/custom-resources v0.0.0-20201008012351-6d8090f759d4
kubevault.dev/operator v0.4.0-beta.0.0.20201010072813-60cfdc6820a6
)
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Expand Up @@ -1552,8 +1552,8 @@ kmodules.xyz/client-go v0.0.0-20200922200830-63d86b6e5b63/go.mod h1:JZN34jqk6ZlR
kmodules.xyz/client-go v0.0.0-20201007024140-3223988adf40/go.mod h1:pnRh7gtJ6ErPJQBkQeRlpD95KRtxhD4eGrYagZEU8RM=
kmodules.xyz/client-go v0.0.0-20201008164401-74d81f261ec5 h1:mGySTT2dC8u2FQDUFbDLcOt7GM+IkXqlH2xzATyddKg=
kmodules.xyz/client-go v0.0.0-20201008164401-74d81f261ec5/go.mod h1:pnRh7gtJ6ErPJQBkQeRlpD95KRtxhD4eGrYagZEU8RM=
kmodules.xyz/client-go v0.0.0-20201011221802-3180ab67d845 h1:7ytqOvrfdq5Ul5SicCyy0s1YnnBSGu33hSZaBEcTbXs=
kmodules.xyz/client-go v0.0.0-20201011221802-3180ab67d845/go.mod h1:pnRh7gtJ6ErPJQBkQeRlpD95KRtxhD4eGrYagZEU8RM=
kmodules.xyz/client-go v0.0.0-20201013083546-b17c1e15f1a3 h1:vP8h3s+JdqXQHhhmvoTgKZOtpraF4X1NxA/y4OFTn+I=
kmodules.xyz/client-go v0.0.0-20201013083546-b17c1e15f1a3/go.mod h1:pnRh7gtJ6ErPJQBkQeRlpD95KRtxhD4eGrYagZEU8RM=
kmodules.xyz/constants v0.0.0-20200506032633-a21e58ceec72/go.mod h1:DbiFk1bJ1KEO94t1SlAn7tzc+Zz95rSXgyUKa2nzPmY=
kmodules.xyz/crd-schema-fuzz v0.0.0-20200922204806-c1426cd7fcf4/go.mod h1:WrO3fryNyFCgqqyWnwI89lnzWA7kN072Ehya7ELGfzE=
kmodules.xyz/custom-resources v0.0.0-20201008012351-6d8090f759d4 h1:eftT0CrrAYK1uniwsVhheYao4mwGk+eFT9eftRX9BMo=
Expand Down
37 changes: 18 additions & 19 deletions vendor/kmodules.xyz/client-go/meta/hash.go
Expand Up @@ -23,7 +23,6 @@ import (
"reflect"
"strconv"

"github.com/appscode/go/encoding/json/types"
"github.com/davecgh/go-spew/spew"
"github.com/fatih/structs"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand Down Expand Up @@ -106,7 +105,7 @@ func MustAlreadyReconciled(o interface{}) bool {
}

func AlreadyReconciled(o interface{}) (bool, error) {
var generation, observedGeneration *types.IntHash
var generation, observedGeneration int64
var err error

switch obj := o.(type) {
Expand All @@ -120,36 +119,36 @@ func AlreadyReconciled(o interface{}) (bool, error) {
if err != nil {
return false, err
}
return observedGeneration.MatchGeneration(generation), nil
return observedGeneration == generation, nil
}

func extractGenerationFromUnstructured(obj *unstructured.Unstructured) (*types.IntHash, *types.IntHash, error) {
generation := types.IntHashForGeneration(obj.GetGeneration())

func extractGenerationFromUnstructured(obj *unstructured.Unstructured) (int64, int64, error) {
val, found, err := unstructured.NestedFieldNoCopy(obj.Object, "status", "observedGeneration")
if err != nil {
return nil, nil, err
return -1, -1, err
} else if !found {
return nil, nil, fmt.Errorf("status.observedGeneration is missing")
return obj.GetGeneration(), -1, nil
}
observedGeneration, err := types.ParseIntHash(val)

return generation, observedGeneration, err
observedGeneration, ok := val.(int64)
if !ok {
return -1, -1, fmt.Errorf("%s %s/%s status.observedGeneration %+v is not int64", obj.GroupVersionKind(), obj.GetNamespace(), obj.GetName(), val)
}
return obj.GetGeneration(), observedGeneration, nil
}

func extractGenerationFromObject(obj metav1.Object) (*types.IntHash, *types.IntHash, error) {
generation := types.IntHashForGeneration(obj.GetGeneration())

func extractGenerationFromObject(obj metav1.Object) (int64, int64, error) {
st := structs.New(obj)
fieldStatus, found := st.FieldOk("Status")
if !found {
return nil, nil, fmt.Errorf("status is missing")
return obj.GetGeneration(), -1, nil
}
fieldObsGen, found := fieldStatus.FieldOk("ObservedGeneration")
if !found {
return nil, nil, fmt.Errorf("status.observedGeneration is missing")
return obj.GetGeneration(), -1, nil
}
observedGeneration, err := types.ParseIntHash(fieldObsGen.Value())

return generation, observedGeneration, err
observedGeneration, ok := fieldObsGen.Value().(int64)
if !ok {
return -1, -1, fmt.Errorf("%s %s/%s status.observedGeneration %+v is not int64", reflect.TypeOf(obj).String(), obj.GetNamespace(), obj.GetName(), fieldObsGen.Value())
}
return obj.GetGeneration(), observedGeneration, nil
}
2 changes: 1 addition & 1 deletion vendor/modules.txt
Expand Up @@ -433,7 +433,7 @@ k8s.io/kubectl/pkg/validation
k8s.io/utils/exec
k8s.io/utils/integer
k8s.io/utils/pointer
# kmodules.xyz/client-go v0.0.0-20201011221802-3180ab67d845
# kmodules.xyz/client-go v0.0.0-20201013083546-b17c1e15f1a3
## explicit
kmodules.xyz/client-go
kmodules.xyz/client-go/api/v1
Expand Down

0 comments on commit e1893db

Please sign in to comment.