File tree Expand file tree Collapse file tree 4 files changed +17
-4
lines changed
kmodules.xyz/client-go/api/v1 Expand file tree Collapse file tree 4 files changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ require (
13
13
k8s.io/api v0.18.9
14
14
k8s.io/apimachinery v0.18.9
15
15
k8s.io/cli-runtime v0.18.9
16
- k8s.io/client-go v12.0.0+incompatible
16
+ k8s.io/client-go v0.18.9
17
17
k8s.io/component-base v0.18.9
18
18
k8s.io/kubectl v0.18.9
19
- kmodules.xyz/client-go v0.0.0-20200929030759-cce6a3c623c1
19
+ kmodules.xyz/client-go v0.0.0-20201007024140-3223988adf40
20
20
kmodules.xyz/objectstore-api v0.0.0-20200922210707-59bab27e5d41
21
21
kmodules.xyz/offshoot-api v0.0.0-20200922211229-36acc531abab
22
22
kmodules.xyz/openshift v0.0.0-20200922211657-1ece16d36c18
Original file line number Diff line number Diff line change @@ -971,6 +971,8 @@ kmodules.xyz/client-go v0.0.0-20200922200830-63d86b6e5b63 h1:luKlEul8LMhyyftoZN3
971
971
kmodules.xyz/client-go v0.0.0-20200922200830-63d86b6e5b63 /go.mod h1:JZN34jqk6ZlR+QOnBPpnUVBab4rmfamqxfSvLaulBMY =
972
972
kmodules.xyz/client-go v0.0.0-20200929030759-cce6a3c623c1 h1:wig8NVgxE5ynY6dsGduWpkF8utYHU1RjepncNbaStNw =
973
973
kmodules.xyz/client-go v0.0.0-20200929030759-cce6a3c623c1 /go.mod h1:pnRh7gtJ6ErPJQBkQeRlpD95KRtxhD4eGrYagZEU8RM =
974
+ kmodules.xyz/client-go v0.0.0-20201007024140-3223988adf40 h1:XQLn2whq+TYbGxVloiyopxSM9jsqjqvWQjltXFKd+aA =
975
+ kmodules.xyz/client-go v0.0.0-20201007024140-3223988adf40 /go.mod h1:pnRh7gtJ6ErPJQBkQeRlpD95KRtxhD4eGrYagZEU8RM =
974
976
kmodules.xyz/constants v0.0.0-20200506032633-a21e58ceec72 /go.mod h1:DbiFk1bJ1KEO94t1SlAn7tzc+Zz95rSXgyUKa2nzPmY =
975
977
kmodules.xyz/crd-schema-fuzz v0.0.0-20200922204806-c1426cd7fcf4 /go.mod h1:WrO3fryNyFCgqqyWnwI89lnzWA7kN072Ehya7ELGfzE =
976
978
kmodules.xyz/custom-resources v0.0.0-20200922210108-70f2815a43bb h1:SwMPMh6A196yoe8kAH+guTNS8rsTfB2dRbFNh6g0Znk =
Original file line number Diff line number Diff line change @@ -156,3 +156,14 @@ func IsConditionTrue(conditions []Condition, condType string) bool {
156
156
}
157
157
return false
158
158
}
159
+
160
+ // IsConditionFalse returns "true" if the desired condition is in false state.
161
+ // It returns "false" if the desired condition is not in "false" state or is not in the condition list.
162
+ func IsConditionFalse (conditions []Condition , condType string ) bool {
163
+ for i := range conditions {
164
+ if conditions [i ].Type == condType && conditions [i ].Status == ConditionFalse {
165
+ return true
166
+ }
167
+ }
168
+ return false
169
+ }
Original file line number Diff line number Diff line change @@ -381,7 +381,7 @@ k8s.io/cli-runtime/pkg/kustomize/k8sdeps/transformer/patch
381
381
k8s.io/cli-runtime/pkg/kustomize/k8sdeps/validator
382
382
k8s.io/cli-runtime/pkg/printers
383
383
k8s.io/cli-runtime/pkg/resource
384
- # k8s.io/client-go v12.0.0+incompatible => github.com/kmodules/k8s-client-go v0.18.10-0.20200922201634-73fedf3d677e
384
+ # k8s.io/client-go v0.18.9 => github.com/kmodules/k8s-client-go v0.18.10-0.20200922201634-73fedf3d677e
385
385
k8s.io/client-go/discovery
386
386
k8s.io/client-go/discovery/cached/disk
387
387
k8s.io/client-go/discovery/cached/memory
@@ -544,7 +544,7 @@ k8s.io/utils/integer
544
544
k8s.io/utils/io
545
545
k8s.io/utils/pointer
546
546
k8s.io/utils/trace
547
- # kmodules.xyz/client-go v0.0.0-20200929030759-cce6a3c623c1
547
+ # kmodules.xyz/client-go v0.0.0-20201007024140-3223988adf40
548
548
kmodules.xyz/client-go
549
549
kmodules.xyz/client-go/api/v1
550
550
kmodules.xyz/client-go/apiextensions
You can’t perform that action at this time.
0 commit comments