mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
31 lines
731 B
YAML
31 lines
731 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: application-controller
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: application-controller
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: application-controller
|
|
spec:
|
|
containers:
|
|
- command:
|
|
- argocd-application-controller
|
|
- --status-processors
|
|
- "20"
|
|
- --operation-processors
|
|
- "10"
|
|
image: argoproj/argocd:latest
|
|
imagePullPolicy: Always
|
|
name: application-controller
|
|
ports:
|
|
- containerPort: 8083
|
|
readinessProbe:
|
|
tcpSocket:
|
|
port: 8083
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 10
|
|
serviceAccountName: application-controller
|