File tree Expand file tree Collapse file tree 3 files changed +69
-0
lines changed Expand file tree Collapse file tree 3 files changed +69
-0
lines changed Original file line number Diff line number Diff line change 1+ # Minikube / Local Development Values
2+ # Minimal resources for local testing
3+
4+ image :
5+ repository : scalecraft/dagctl-dbt-operator
6+ tag : " 0.1.0"
7+ pullPolicy : IfNotPresent
8+
9+ replicaCount : 1
10+
11+ resources :
12+ limits :
13+ cpu : 200m
14+ memory : 256Mi
15+ requests :
16+ cpu : 100m
17+ memory : 128Mi
18+
19+ # Faster sync for local dev
20+ leaderElection :
21+ enabled : true
22+ leaseDuration : 15s
23+ renewDeadline : 10s
24+ retryPeriod : 2s
Original file line number Diff line number Diff line change 1+ # Production Environment Values
2+ # Full resources for production workloads
3+
4+ image :
5+ repository : scalecraft/dagctl-dbt-operator
6+ tag : " 0.1.0"
7+ pullPolicy : IfNotPresent
8+
9+ replicaCount : 2 # HA setup
10+
11+ resources :
12+ limits :
13+ cpu : 1000m
14+ memory : 1Gi
15+ requests :
16+ cpu : 500m
17+ memory : 512Mi
18+
19+ leaderElection :
20+ enabled : true
21+
22+ # Production-grade settings
23+ nodeSelector : {}
24+ tolerations : []
25+ affinity : {}
Original file line number Diff line number Diff line change 1+ # Staging Environment Values
2+ # Moderate resources for staging testing
3+
4+ image :
5+ repository : scalecraft/dagctl-dbt-operator
6+ tag : " 0.1.0"
7+ pullPolicy : Always
8+
9+ replicaCount : 1
10+
11+ resources :
12+ limits :
13+ cpu : 500m
14+ memory : 512Mi
15+ requests :
16+ cpu : 250m
17+ memory : 256Mi
18+
19+ leaderElection :
20+ enabled : true
You can’t perform that action at this time.
0 commit comments