Skip to content

Commit 17e7206

Browse files
authored
Update to latest commit of argo-rollouts-manager 'bb5580b286c595f91dfc21382df494e5fb8f9a46' (#864)
Signed-off-by: Jonathan West <[email protected]>
1 parent 8640e39 commit 17e7206

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.22.0
55
toolchain go1.22.5
66

77
require (
8-
github.com/argoproj-labs/argo-rollouts-manager v0.0.6-0.20250212035559-38faac6d4127
8+
github.com/argoproj-labs/argo-rollouts-manager v0.0.6-0.20250314083117-bb5580b286c5
99
github.com/argoproj-labs/argocd-operator v0.14.0-rc4
1010
github.com/coreos/prometheus-operator v0.40.0
1111
github.com/go-logr/logr v1.4.2

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -620,8 +620,8 @@ github.com/apache/arrow/go/v11 v11.0.0/go.mod h1:Eg5OsL5H+e299f7u5ssuXsuHQVEGC4x
620620
github.com/apache/thrift v0.12.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ=
621621
github.com/apache/thrift v0.13.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ=
622622
github.com/apache/thrift v0.16.0/go.mod h1:PHK3hniurgQaNMZYaCLEqXKsYK8upmhPbmdP2FXSqgU=
623-
github.com/argoproj-labs/argo-rollouts-manager v0.0.6-0.20250212035559-38faac6d4127 h1:chOb5NQfFybnoDHwdkjhC2Y9YgsSjNxgXIKLEGBgWho=
624-
github.com/argoproj-labs/argo-rollouts-manager v0.0.6-0.20250212035559-38faac6d4127/go.mod h1:hX18xfJcnomx/k6urvDp/7+Zwa/y5aF1Mlhz5a2en4k=
623+
github.com/argoproj-labs/argo-rollouts-manager v0.0.6-0.20250314083117-bb5580b286c5 h1:w/B/Zn/kuxTqNozZyDxAz2cXp1zC2wr67bU5nkktfNw=
624+
github.com/argoproj-labs/argo-rollouts-manager v0.0.6-0.20250314083117-bb5580b286c5/go.mod h1:hX18xfJcnomx/k6urvDp/7+Zwa/y5aF1Mlhz5a2en4k=
625625
github.com/argoproj-labs/argocd-operator v0.14.0-rc4 h1:5jlgfsCrN9e2jRC5Cl7AfCHIuReHyncMAxWdeLbK3/E=
626626
github.com/argoproj-labs/argocd-operator v0.14.0-rc4/go.mod h1:UHe70eXnnCEfzp7EWRofMU+BFnPgZiT5OSqpuInEARA=
627627
github.com/argoproj/argo-cd/v2 v2.12.3 h1:Bi4QahHTnKl3esU5MplQP1wraGhaTpvgAV4GsMqc3Zc=

scripts/run-rollouts-e2e-tests.sh

+6-2
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ cd "$ROLLOUTS_TMP_DIR/argo-rollouts-manager"
161161

162162
# This commit value will be automatically updated by calling 'hack/upgrade-rollouts-manager/go-run.sh':
163163
# - It should always point to the same argo-rollouts-manager commit that is referenced in go.mod of gitops-operator (which will usually be the most recent argo-rollouts-manager commit)
164-
TARGET_ROLLOUT_MANAGER_COMMIT=38faac6d4127850207da231d153526a3777fa3bf
164+
TARGET_ROLLOUT_MANAGER_COMMIT=bb5580b286c595f91dfc21382df494e5fb8f9a46
165165

166166
# This commit value will be automatically updated by calling 'hack/upgrade-rollouts-manager/go-run.sh':
167167
# - It should always point to the same argo-rollouts-manager commit that is referenced in the version of argo-rollouts-manager that is in go.mod
@@ -170,8 +170,11 @@ TARGET_OPENSHIFT_ROUTE_ROLLOUT_PLUGIN_COMMIT=8b4125a7f9ecffb0247df91a4c890f88c0c
170170
git checkout $TARGET_ROLLOUT_MANAGER_COMMIT
171171

172172
# 1) Run E2E tests from argo-rollouts-manager repo
173+
# We use 'DISABLE_METRICS=true' since metrics gathering only works when run directly via Rollouts E2E tests
174+
175+
DISABLE_METRICS=true make test-e2e
176+
173177

174-
make test-e2e
175178

176179
# Clean up old namespaces created by test
177180
# NOTE: remove this once this is handled by 'make test-e2e' in argo-rollouts-manager repo
@@ -217,3 +220,4 @@ make test-e2e
217220

218221

219222

223+

0 commit comments

Comments
 (0)