Skip to content

Commit d5a184c

Browse files
authored
Merge branch 'master' into konflux/mintmaker/master/github.com-openshift-api-digest
2 parents bd66f80 + bfb60dd commit d5a184c

20 files changed

Lines changed: 2429 additions & 134 deletions

bundle/manifests/argocd-image-updater.argoproj.io_imageupdaters.yaml

Lines changed: 556 additions & 0 deletions
Large diffs are not rendered by default.

bundle/manifests/gitops-operator.clusterserviceversion.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ metadata:
180180
capabilities: Deep Insights
181181
console.openshift.io/plugins: '["gitops-plugin"]'
182182
containerImage: quay.io/redhat-developer/gitops-operator
183-
createdAt: "2026-02-27T08:17:37Z"
183+
createdAt: "2026-03-04T06:59:29Z"
184184
description: Enables teams to adopt GitOps principles for managing cluster configurations
185185
and application delivery across hybrid multi-cluster Kubernetes environments.
186186
features.operators.openshift.io/disconnected: "true"
@@ -306,6 +306,11 @@ spec:
306306
kind: GitopsService
307307
name: gitopsservices.pipelines.openshift.io
308308
version: v1alpha1
309+
- description: ImageUpdater is the Schema for the imageupdaters API
310+
displayName: ImageUpdater
311+
kind: ImageUpdater
312+
name: imageupdaters.argocd-image-updater.argoproj.io
313+
version: v1alpha1
309314
- kind: NamespaceManagement
310315
name: namespacemanagements.argoproj.io
311316
version: v1beta1

config/crd/bases/argocd-image-updater.argoproj.io_imageupdaters.yaml

Lines changed: 556 additions & 0 deletions
Large diffs are not rendered by default.

config/crd/kustomization.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ resources:
99
- bases/argoproj.io_argocds.yaml
1010
- bases/argoproj.io_namespacemanagements.yaml
1111
- bases/argoproj.io_notificationsconfigurations.yaml
12+
- bases/argocd-image-updater.argoproj.io_imageupdaters.yaml
1213
- bases/analysis-run-crd.yaml
1314
- bases/analysis-template-crd.yaml
1415
- bases/argoproj.io_rolloutmanagers.yaml

config/manifests/bases/gitops-operator.clusterserviceversion.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,11 @@ spec:
132132
kind: RolloutManager
133133
name: rolloutmanagers.argoproj.io
134134
version: v1alpha1
135+
- description: ImageUpdater is the Schema for the imageupdaters API
136+
displayName: ImageUpdater
137+
kind: ImageUpdater
138+
name: imageupdaters.argocd-image-updater.argoproj.io
139+
version: v1alpha1
135140
- description: GitopsService is the Schema for the gitopsservices API
136141
displayName: Gitops Service
137142
kind: GitopsService

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ go 1.25.5
44

55
require (
66
github.com/argoproj-labs/argo-rollouts-manager v0.0.8-0.20260224121037-1824164aac67
7-
github.com/argoproj-labs/argocd-operator v0.17.0-rc1.0.20260227080902-0433a07294f8
8-
github.com/argoproj/argo-cd/v3 v3.3.0
7+
github.com/argoproj-labs/argocd-image-updater v1.1.1
8+
github.com/argoproj-labs/argocd-operator v0.17.0-rc1.0.20260304133241-fd7fd59a2b0b
9+
github.com/argoproj/argo-cd/v3 v3.3.2
910
github.com/argoproj/gitops-engine v0.7.1-0.20251217140045-5baed5604d2d
1011
github.com/go-logr/logr v1.4.3
1112
github.com/google/go-cmp v0.7.0
@@ -43,7 +44,6 @@ require (
4344
github.com/Masterminds/semver/v3 v3.4.0 // indirect
4445
github.com/Microsoft/go-winio v0.6.2 // indirect
4546
github.com/ProtonMail/go-crypto v1.1.6 // indirect
46-
github.com/argoproj-labs/argocd-image-updater v1.1.1 // indirect
4747
github.com/argoproj/pkg v0.13.7-0.20250305113207-cbc37dc61de5 // indirect
4848
github.com/argoproj/pkg/v2 v2.0.1 // indirect
4949
github.com/beorn7/perks v1.0.1 // indirect

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ github.com/argoproj-labs/argo-rollouts-manager v0.0.8-0.20260224121037-1824164aa
3939
github.com/argoproj-labs/argo-rollouts-manager v0.0.8-0.20260224121037-1824164aac67/go.mod h1:WPyZkNHZjir/OTt8mrRwcUZKe1euHrHPJsRv1Wp/F/0=
4040
github.com/argoproj-labs/argocd-image-updater v1.1.1 h1:7YDaR3WX2NMsDKp0wN7TRaRRHaVHQ94tSybi2P99MGk=
4141
github.com/argoproj-labs/argocd-image-updater v1.1.1/go.mod h1:gMHiNrGNwNSt4ljf0ykcnmNvXBk/NJ+Z17AnZVe7V7I=
42-
github.com/argoproj-labs/argocd-operator v0.17.0-rc1.0.20260227080902-0433a07294f8 h1:MZH+YNGfucyny7tX2Fs4aNNQgeOuu9Gi7MtjS3L4R1U=
43-
github.com/argoproj-labs/argocd-operator v0.17.0-rc1.0.20260227080902-0433a07294f8/go.mod h1:3/Y9YWMU+DHC+onOQVXPAxrNkoBAGZD+UQui9BgJBjY=
44-
github.com/argoproj/argo-cd/v3 v3.3.0 h1:9UlruTd5cC/MyvorTXgAIblfZTy63MF5FYvvoAaUvwU=
45-
github.com/argoproj/argo-cd/v3 v3.3.0/go.mod h1:5VAfe0s/a4VY5GmAIFK76FtW6xn7zAcLmaw25bOL/2g=
42+
github.com/argoproj-labs/argocd-operator v0.17.0-rc1.0.20260304133241-fd7fd59a2b0b h1:HxyuUUBlSPwKWSvLHnCibtR4Yz3Z6qpEm5wSi3a5oIw=
43+
github.com/argoproj-labs/argocd-operator v0.17.0-rc1.0.20260304133241-fd7fd59a2b0b/go.mod h1:J1/kP2zzXbKU5Austr4Eg3qAilMtRyQX8yu0/ALUzD0=
44+
github.com/argoproj/argo-cd/v3 v3.3.2 h1:kVHBj5Z0Wm2D6s69l0q6lC/WH5tc4E1peXgEEOPrLLU=
45+
github.com/argoproj/argo-cd/v3 v3.3.2/go.mod h1:5VAfe0s/a4VY5GmAIFK76FtW6xn7zAcLmaw25bOL/2g=
4646
github.com/argoproj/gitops-engine v0.7.1-0.20251217140045-5baed5604d2d h1:iUJYrbSvpV9n8vyl1sBt1GceM60HhHfnHxuzcm5apDg=
4747
github.com/argoproj/gitops-engine v0.7.1-0.20251217140045-5baed5604d2d/go.mod h1:PauXVUVcfiTgC+34lDdWzPS101g4NpsUtDAjFBnWf94=
4848
github.com/argoproj/pkg v0.13.7-0.20250305113207-cbc37dc61de5 h1:YBoLSjpoaJXaXAldVvBRKJuOPvIXz9UOv6S96gMJM/Q=

test/openshift/e2e/ginkgo/fixture/utils/fixtureUtils.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import (
1616
olmv1alpha1 "github.com/operator-framework/api/pkg/operators/v1alpha1"
1717

1818
rolloutmanagerv1alpha1 "github.com/argoproj-labs/argo-rollouts-manager/api/v1alpha1"
19+
imageUpdater "github.com/argoproj-labs/argocd-image-updater/api/v1alpha1"
1920
argov1alpha1api "github.com/argoproj-labs/argocd-operator/api/v1alpha1"
2021
consolev1 "github.com/openshift/api/console/v1"
2122
routev1 "github.com/openshift/api/route/v1"
@@ -141,6 +142,10 @@ func getKubeClient(config *rest.Config) (client.Client, *runtime.Scheme, error)
141142
return nil, nil, err
142143
}
143144

145+
if err := imageUpdater.AddToScheme(scheme); err != nil {
146+
return nil, nil, err
147+
}
148+
144149
k8sClient, err := client.New(config, client.Options{Scheme: scheme})
145150
if err != nil {
146151
return nil, nil, err

test/openshift/e2e/ginkgo/parallel/1-031_validate_toolchain_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ var _ = Describe("GitOps Operator Parallel E2E Tests", func() {
8585
It("verifies that toolchain versions have the expected values", func() {
8686

8787
// These variables need to be maintained according to the component matrix: https://spaces.redhat.com/display/GITOPS/GitOps+Component+Matrix
88-
expected_kustomizeVersion := "v5.8.0"
88+
expected_kustomizeVersion := "v5.8.1"
8989
expected_helmVersion := "v3.19.4"
90-
expected_argocdVersion := "v3.3.0"
90+
expected_argocdVersion := "v3.3.2"
9191

9292
var expected_dexVersion string
9393
var expected_redisVersion string

test/openshift/e2e/ginkgo/parallel/1-034_validate_webhook_notifications_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ UVwpFuaKz5vTCD36Gmmy/u8y
419419

420420
return strings.Contains(out, `{"created":"my-app-3","type":"Directory"}`)
421421

422-
}, "4m", "5s").Should(BeTrue())
422+
}, "5m", "10s").Should(BeTrue(), "Webhook did not receive the expected notification within timeout")
423423

424424
})
425425

0 commit comments

Comments
 (0)