mirror of
https://github.com/fluxcd/flagger.git
synced 2026-02-14 18:10:00 +00:00
63 lines
1.3 KiB
YAML
63 lines
1.3 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: flagger
|
|
namespace: default
|
|
labels:
|
|
app: flagger
|
|
spec:
|
|
replicas: 1
|
|
strategy:
|
|
type: Recreate
|
|
selector:
|
|
matchLabels:
|
|
app: flagger
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: flagger
|
|
annotations:
|
|
prometheus.io/scrape: "true"
|
|
spec:
|
|
serviceAccountName: flagger
|
|
containers:
|
|
- name: flagger
|
|
image: ghcr.io/fluxcd/flagger:1.34.0
|
|
imagePullPolicy: IfNotPresent
|
|
ports:
|
|
- name: http
|
|
containerPort: 8080
|
|
command:
|
|
- ./flagger
|
|
- -log-level=info
|
|
livenessProbe:
|
|
exec:
|
|
command:
|
|
- wget
|
|
- --quiet
|
|
- --tries=1
|
|
- --timeout=2
|
|
- --spider
|
|
- http://localhost:8080/healthz
|
|
timeoutSeconds: 5
|
|
readinessProbe:
|
|
exec:
|
|
command:
|
|
- wget
|
|
- --quiet
|
|
- --tries=1
|
|
- --timeout=2
|
|
- --spider
|
|
- http://localhost:8080/healthz
|
|
timeoutSeconds: 5
|
|
resources:
|
|
limits:
|
|
memory: "512Mi"
|
|
cpu: "1000m"
|
|
requests:
|
|
memory: "32Mi"
|
|
cpu: "10m"
|
|
securityContext:
|
|
readOnlyRootFilesystem: true
|
|
runAsUser: 10001
|