summaryrefslogtreecommitdiff
path: root/f3s/argo-rollouts/values.yaml
blob: ed77670c6f6762331e08f2d0f023eca57e205fdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Argo Rollouts Helm Chart Values Override
# Following f3s cluster patterns: single instance deployment

# Controller configuration
controller:
  replicas: 1
  # Enable metrics for Prometheus integration
  metrics:
    enabled: true
    serviceMonitor:
      enabled: false  # Will enable if Prometheus available
  # Resource limits
  resources:
    limits:
      cpu: 500m
      memory: 512Mi
    requests:
      cpu: 250m
      memory: 256Mi

# Notification controller - disabled
notifications:
  enabled: false

# CRD installation
crds:
  install: true
  keep: true