From 4fc30c0215dbe7665449a0ca79b5f14dce99da25 Mon Sep 17 00:00:00 2001 From: Varsha B Date: Tue, 14 Apr 2026 15:04:49 +0530 Subject: [PATCH] Add example dir for image updater test Signed-off-by: Varsha B --- test/examples/image-updater/deployment.yaml | 19 +++++++++++++++++++ .../examples/image-updater/kustomization.yaml | 2 ++ 2 files changed, 21 insertions(+) create mode 100644 test/examples/image-updater/deployment.yaml create mode 100644 test/examples/image-updater/kustomization.yaml diff --git a/test/examples/image-updater/deployment.yaml b/test/examples/image-updater/deployment.yaml new file mode 100644 index 00000000000..c0a34b1b339 --- /dev/null +++ b/test/examples/image-updater/deployment.yaml @@ -0,0 +1,19 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: e2e-registry +spec: + replicas: 1 + selector: + matchLabels: + app: test-app-005 + component: argocd-image-updater-e2e + template: + metadata: + labels: + app: test-app-005 + component: argocd-image-updater-e2e + spec: + containers: + - name: test + image: quay.io/devtools_gitops/guestbook_go:1.0.0 \ No newline at end of file diff --git a/test/examples/image-updater/kustomization.yaml b/test/examples/image-updater/kustomization.yaml new file mode 100644 index 00000000000..ff6d7ee7eca --- /dev/null +++ b/test/examples/image-updater/kustomization.yaml @@ -0,0 +1,2 @@ +resources: + - deployment.yaml \ No newline at end of file