argo-cd/gitops-engine/agent/manifests/base/gitops-agent-deploy.yaml
Aya Hosni 9213601160
chore: migrate k8s.gcr.io to registry.k8s.io in install manifests (#25802)
Signed-off-by: Aya <ayia.hosni@gmail.com>
Co-authored-by: Nitish Kumar <justnitish06@gmail.com>
2026-01-05 10:51:27 +02:00

47 lines
No EOL
1 KiB
YAML

---
apiVersion: apps/v1
kind: Deployment
metadata:
name: gitops-agent
spec:
strategy:
type: Recreate
selector:
matchLabels:
app.kubernetes.io/name: gitops-agent
template:
metadata:
labels:
app.kubernetes.io/name: gitops-agent
spec:
containers:
- name: gitops-agent
command:
- gitops
- /tmp/git/repo
- --path
- guestbook
image: argoproj/gitops-agent:latest
volumeMounts:
- name: git
mountPath: /tmp/git
- name: git-sync
env:
- name: GIT_SYNC_REPO
value: https://github.com/argoproj/argocd-example-apps
args:
- --webhook-url
- http://localhost:9001/api/v1/sync
- --dest
- repo
image: registry.k8s.io/git-sync:v3.1.6
volumeMounts:
- name: git
mountPath: /tmp/git
serviceAccountName: gitops-agent
volumes:
- emptyDir: {}
name: git