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 @@ -10,10 +10,10 @@ require (
10
10
k8s.io/api v0.18.9
11
11
k8s.io/apimachinery v0.18.9
12
12
k8s.io/cli-runtime v0.18.9
13
- k8s.io/client-go v12.0.0+incompatible
13
+ k8s.io/client-go v0.18.9
14
14
k8s.io/component-base v0.18.9
15
15
k8s.io/kubectl v0.18.9
16
- kmodules.xyz/client-go v0.0.0-20200929030759-cce6a3c623c1
16
+ kmodules.xyz/client-go v0.0.0-20201007024140-3223988adf40
17
17
kmodules.xyz/custom-resources v0.0.0-20200922210108-70f2815a43bb
18
18
kmodules.xyz/monitoring-agent-api v0.0.0-20200922204510-b8b5610e5385
19
19
kmodules.xyz/objectstore-api v0.0.0-20200922210707-59bab27e5d41
Original file line number Diff line number Diff line change @@ -1438,6 +1438,8 @@ kmodules.xyz/client-go v0.0.0-20200922200830-63d86b6e5b63 h1:luKlEul8LMhyyftoZN3
1438
1438
kmodules.xyz/client-go v0.0.0-20200922200830-63d86b6e5b63 /go.mod h1:JZN34jqk6ZlR+QOnBPpnUVBab4rmfamqxfSvLaulBMY =
1439
1439
kmodules.xyz/client-go v0.0.0-20200929030759-cce6a3c623c1 h1:wig8NVgxE5ynY6dsGduWpkF8utYHU1RjepncNbaStNw =
1440
1440
kmodules.xyz/client-go v0.0.0-20200929030759-cce6a3c623c1 /go.mod h1:pnRh7gtJ6ErPJQBkQeRlpD95KRtxhD4eGrYagZEU8RM =
1441
+ kmodules.xyz/client-go v0.0.0-20201007024140-3223988adf40 h1:XQLn2whq+TYbGxVloiyopxSM9jsqjqvWQjltXFKd+aA =
1442
+ kmodules.xyz/client-go v0.0.0-20201007024140-3223988adf40 /go.mod h1:pnRh7gtJ6ErPJQBkQeRlpD95KRtxhD4eGrYagZEU8RM =
1441
1443
kmodules.xyz/constants v0.0.0-20200506032633-a21e58ceec72 /go.mod h1:DbiFk1bJ1KEO94t1SlAn7tzc+Zz95rSXgyUKa2nzPmY =
1442
1444
kmodules.xyz/crd-schema-fuzz v0.0.0-20200922204806-c1426cd7fcf4 /go.mod h1:WrO3fryNyFCgqqyWnwI89lnzWA7kN072Ehya7ELGfzE =
1443
1445
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 @@ -327,7 +327,7 @@ k8s.io/cli-runtime/pkg/kustomize/k8sdeps/transformer/patch
327
327
k8s.io/cli-runtime/pkg/kustomize/k8sdeps/validator
328
328
k8s.io/cli-runtime/pkg/printers
329
329
k8s.io/cli-runtime/pkg/resource
330
- # k8s.io/client-go v12.0.0+incompatible => github.com/kmodules/k8s-client-go v0.18.10-0.20200922201634-73fedf3d677e
330
+ # k8s.io/client-go v0.18.9 => github.com/kmodules/k8s-client-go v0.18.10-0.20200922201634-73fedf3d677e
331
331
k8s.io/client-go/discovery
332
332
k8s.io/client-go/discovery/cached/disk
333
333
k8s.io/client-go/dynamic
@@ -451,7 +451,7 @@ k8s.io/kubernetes/pkg/util/hash
451
451
k8s.io/utils/exec
452
452
k8s.io/utils/integer
453
453
k8s.io/utils/pointer
454
- # kmodules.xyz/client-go v0.0.0-20200929030759-cce6a3c623c1
454
+ # kmodules.xyz/client-go v0.0.0-20201007024140-3223988adf40
455
455
kmodules.xyz/client-go
456
456
kmodules.xyz/client-go/api/v1
457
457
kmodules.xyz/client-go/apiextensions
You can’t perform that action at this time.
0 commit comments