Skip to content

Commit 7de6c65

Browse files
authored
Update to latest commit of argo-rollouts-manager '837f3074a22a072ee7b06dd4e36d7dd8303f92fc' (#700)
Signed-off-by: Jonathan West <[email protected]>
1 parent c6aff9e commit 7de6c65

File tree

4 files changed

+40
-38
lines changed

4 files changed

+40
-38
lines changed

bundle/manifests/pipelines.openshift.io_gitopsservices.yaml

Lines changed: 36 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: apiextensions.k8s.io/v1
22
kind: CustomResourceDefinition
33
metadata:
44
annotations:
5-
controller-gen.kubebuilder.io/version: v0.4.1
5+
controller-gen.kubebuilder.io/version: v0.14.0
66
creationTimestamp: null
77
name: gitopsservices.pipelines.openshift.io
88
spec:
@@ -20,14 +20,19 @@ spec:
2020
description: GitopsService is the Schema for the gitopsservices API
2121
properties:
2222
apiVersion:
23-
description: 'APIVersion defines the versioned schema of this representation
24-
of an object. Servers should convert recognized schemas to the latest
25-
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
23+
description: |-
24+
APIVersion defines the versioned schema of this representation of an object.
25+
Servers should convert recognized schemas to the latest internal value, and
26+
may reject unrecognized values.
27+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
2628
type: string
2729
kind:
28-
description: 'Kind is a string value representing the REST resource this
29-
object represents. Servers may infer this from the endpoint the client
30-
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
30+
description: |-
31+
Kind is a string value representing the REST resource this object represents.
32+
Servers may infer this from the endpoint the client submits requests to.
33+
Cannot be updated.
34+
In CamelCase.
35+
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
3136
type: string
3237
metadata:
3338
type: object
@@ -48,40 +53,39 @@ spec:
4853
description: Tolerations allow the default workloads to schedule onto
4954
nodes with matching taints
5055
items:
51-
description: The pod this Toleration is attached to tolerates any
52-
taint that matches the triple <key,value,effect> using the matching
53-
operator <operator>.
56+
description: |-
57+
The pod this Toleration is attached to tolerates any taint that matches
58+
the triple <key,value,effect> using the matching operator <operator>.
5459
properties:
5560
effect:
56-
description: Effect indicates the taint effect to match. Empty
57-
means match all taint effects. When specified, allowed values
58-
are NoSchedule, PreferNoSchedule and NoExecute.
61+
description: |-
62+
Effect indicates the taint effect to match. Empty means match all taint effects.
63+
When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.
5964
type: string
6065
key:
61-
description: Key is the taint key that the toleration applies
62-
to. Empty means match all taint keys. If the key is empty,
63-
operator must be Exists; this combination means to match all
64-
values and all keys.
66+
description: |-
67+
Key is the taint key that the toleration applies to. Empty means match all taint keys.
68+
If the key is empty, operator must be Exists; this combination means to match all values and all keys.
6569
type: string
6670
operator:
67-
description: Operator represents a key's relationship to the
68-
value. Valid operators are Exists and Equal. Defaults to Equal.
69-
Exists is equivalent to wildcard for value, so that a pod
70-
can tolerate all taints of a particular category.
71+
description: |-
72+
Operator represents a key's relationship to the value.
73+
Valid operators are Exists and Equal. Defaults to Equal.
74+
Exists is equivalent to wildcard for value, so that a pod can
75+
tolerate all taints of a particular category.
7176
type: string
7277
tolerationSeconds:
73-
description: TolerationSeconds represents the period of time
74-
the toleration (which must be of effect NoExecute, otherwise
75-
this field is ignored) tolerates the taint. By default, it
76-
is not set, which means tolerate the taint forever (do not
77-
evict). Zero and negative values will be treated as 0 (evict
78-
immediately) by the system.
78+
description: |-
79+
TolerationSeconds represents the period of time the toleration (which must be
80+
of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,
81+
it is not set, which means tolerate the taint forever (do not evict). Zero and
82+
negative values will be treated as 0 (evict immediately) by the system.
7983
format: int64
8084
type: integer
8185
value:
82-
description: Value is the taint value the toleration matches
83-
to. If the operator is Exists, the value should be empty,
84-
otherwise just a regular string.
86+
description: |-
87+
Value is the taint value the toleration matches to.
88+
If the operator is Exists, the value should be empty, otherwise just a regular string.
8589
type: string
8690
type: object
8791
type: array
@@ -98,5 +102,5 @@ status:
98102
acceptedNames:
99103
kind: ""
100104
plural: ""
101-
conditions: []
102-
storedVersions: []
105+
conditions: null
106+
storedVersions: null

go.mod

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/redhat-developer/gitops-operator
33
go 1.21
44

55
require (
6-
github.com/argoproj-labs/argo-rollouts-manager v0.0.3-0.20240411091021-efd9a78591b8
6+
github.com/argoproj-labs/argo-rollouts-manager v0.0.3-0.20240508151103-837f3074a22a
77
github.com/argoproj-labs/argocd-operator v0.10.0
88
github.com/coreos/prometheus-operator v0.40.0
99
github.com/go-logr/logr v1.4.1
@@ -27,7 +27,6 @@ require (
2727

2828
require (
2929
github.com/argoproj/argo-cd/v2 v2.10.8 // indirect
30-
github.com/argoproj/argo-rollouts v1.6.6 // indirect
3130
github.com/beorn7/perks v1.0.1 // indirect
3231
github.com/blang/semver/v4 v4.0.0 // indirect
3332
github.com/cespare/xxhash/v2 v2.2.0 // indirect

go.sum

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -637,14 +637,12 @@ github.com/apache/arrow/go/v11 v11.0.0/go.mod h1:Eg5OsL5H+e299f7u5ssuXsuHQVEGC4x
637637
github.com/apache/thrift v0.12.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ=
638638
github.com/apache/thrift v0.13.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ=
639639
github.com/apache/thrift v0.16.0/go.mod h1:PHK3hniurgQaNMZYaCLEqXKsYK8upmhPbmdP2FXSqgU=
640-
github.com/argoproj-labs/argo-rollouts-manager v0.0.3-0.20240411091021-efd9a78591b8 h1:udzUF+oAWFWq4p8MB01q8ZpMVDf9V/8T8fpUnddgNXI=
641-
github.com/argoproj-labs/argo-rollouts-manager v0.0.3-0.20240411091021-efd9a78591b8/go.mod h1:aCj8qr73LKlj6wtXF7GWJSZJJ8pYAbZSXkKGhwLeI3E=
640+
github.com/argoproj-labs/argo-rollouts-manager v0.0.3-0.20240508151103-837f3074a22a h1:bjcQkMYM5tlE52DS9AAZftzMZVDcEPueSDrmx6QtniM=
641+
github.com/argoproj-labs/argo-rollouts-manager v0.0.3-0.20240508151103-837f3074a22a/go.mod h1:+qJpu01daETe3BpdO4XKaTe3ivFYY1LkrxeGfTbPI3I=
642642
github.com/argoproj-labs/argocd-operator v0.10.0 h1:B2k6Rwiff3O7fG3K7nNiFuo9TV7Kr0s/K9f4Mo+5Qak=
643643
github.com/argoproj-labs/argocd-operator v0.10.0/go.mod h1:4TThdvK88j46P6ybACEhHHqJstdnF+CFHkmlS068dqk=
644644
github.com/argoproj/argo-cd/v2 v2.10.8 h1:WRnzXqMiAapSYzR6fkDUBfen+irHlOeCG6zrXWuPU9E=
645645
github.com/argoproj/argo-cd/v2 v2.10.8/go.mod h1:Ep0WnxPmx9UFh0jEwBadYTHe7iIR90RNvRbSWF8VrFM=
646-
github.com/argoproj/argo-rollouts v1.6.6 h1:JCJ0cGAwWkh2xCAHZ1OQmrobysRjCatmG9IZaLJpS1g=
647-
github.com/argoproj/argo-rollouts v1.6.6/go.mod h1:X2kTiBaYCSounmw1kmONdIZTwJNzNQYC0SrXUgSw9UI=
648646
github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hCbHZ8TKRvWD2dDTCfh9M9ya+I9JpbB7O8o=
649647
github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8=
650648
github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY=

scripts/openshiftci-presubmit-all-tests.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,4 @@ export KUBECONFIG=$TMP_DIR/kubeconfig
2828
make test-e2e
2929

3030

31+

0 commit comments

Comments
 (0)