Files
argo-cd/gitops-engine/agent/manifests/install-namespaced.yaml
Leonardo Luz Almeida bcc0243f1e prepare repo for migration to ArgoCD repo
Signed-off-by: Leonardo Luz Almeida <leonardo_almeida@intuit.com>
2025-09-23 10:05:42 -04:00

74 lines
1.4 KiB
YAML

apiVersion: v1
kind: ServiceAccount
metadata:
name: gitops-agent
---
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: gitops-agent
rules:
- apiGroups:
- '*'
resources:
- '*'
verbs:
- '*'
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: gitops-agent
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: gitops-agent
subjects:
- kind: ServiceAccount
name: gitops-agent
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: gitops-agent
spec:
selector:
matchLabels:
app.kubernetes.io/name: gitops-agent
strategy:
type: Recreate
template:
metadata:
labels:
app.kubernetes.io/name: gitops-agent
spec:
containers:
- command:
- gitops
- /tmp/git/repo
- --path
- guestbook
- --namespaced
image: argoproj/gitops-agent:latest
name: gitops-agent
volumeMounts:
- mountPath: /tmp/git
name: git
- args:
- --webhook-url
- http://localhost:9001/api/v1/sync
- --dest
- repo
env:
- name: GIT_SYNC_REPO
value: https://github.com/argoproj/argocd-example-apps
image: k8s.gcr.io/git-sync:v3.1.6
name: git-sync
volumeMounts:
- mountPath: /tmp/git
name: git
serviceAccountName: gitops-agent
volumes:
- emptyDir: {}
name: git