forked from flamingo-stack/openframe-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelm-values-example.yaml
More file actions
426 lines (381 loc) · 15.8 KB
/
Copy pathhelm-values-example.yaml
File metadata and controls
426 lines (381 loc) · 15.8 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
# =============================================================================
# OpenFrame Helm Values - Complete Documentation
# =============================================================================
# This file documents ALL actual Helm values used in the OpenFrame project
# Organized by deployment hierarchy: app-of-apps → apps → individual services
# =============================================================================
# =============================================================================
# 1. APP-OF-APPS VALUES (app-of-apps/values.yaml)
# =============================================================================
# This is the top-level configuration that controls the entire OpenFrame deployment
# It defines global settings, registry credentials, and deployment environment
deployment:
oss:
enabled: true
# Ingress configuration - enable only ONE of the following
ingress:
localhost:
enabled: true # Enable localhost ingress with nginx
ngrok:
enabled: false # Enable ngrok ingress for external access
url: "example.com"
credentials:
apiKey: ""
authtoken: ""
repository:
baseDir: manifests
appsDir: apps
URL: https://github.com/gippsweb/openframe-oss-tenant.git
repoName: openframe-oss-tenant
branch: main
profile: dev
autoSync: true
saas:
enabled: false
# Ingress configuration for SaaS deployment
ingress:
localhost:
enabled: true # Enable localhost ingress with nginx for SaaS
gcp:
enabled: false
gkeSecurityGroup: "gke-security-groups@flamingo.cx"
privateDomain: "internal.flamingo.cx"
tenantID: "cluster-1001"
repository:
baseDir: manifests
appsDir: apps
URL: https://github.com/flamingo-stack/openframe-saas-tenant.git
repoName: openframe-saas-tenant
branch: main
password: "" # GitHub PAT for private repo access
profile: dev
autoSync: true
registry:
docker:
server: https://index.docker.io/v1/
username: ""
password: ""
email: ""
ghcr:
server: ghcr.io
username: ""
password: ""
email: ""
registerJob:
enabled: true # Enable registration job for integrated tools
# =============================================================================
# 2. APPS VALUES (apps/values.yaml)
# =============================================================================
# This level receives values from app-of-apps and defines all ArgoCD applications
# Each app has: enabled, project, namespace, syncWave, and optional values/syncOptions
apps:
# =============================================================================
# SYNC WAVE 0: Platform Services (Infrastructure)
# =============================================================================
# These are deployed first as they provide foundational services
namespace-platform:
enabled: true # Create the platform namespace
project: default # Use default ArgoCD project
namespace: platform # Kubernetes namespace for platform services
syncWave: "0" # Deploy in sync wave 0 (first)
ngrok-operator:
enabled: true # Ngrok operator for local development ingress
project: platform # Use platform ArgoCD project
namespace: platform # Deploy to platform namespace
syncWave: "0" # Deploy in sync wave 0
values:
registerJob:
enabled: true
ingress-nginx:
enabled: true # NGINX ingress controller
project: platform # Use platform ArgoCD project
namespace: platform # Deploy to platform namespace
syncWave: "0" # Deploy in sync wave 0
values:
registerJob:
enabled: true
promtail:
enabled: true # Log aggregation agent
project: platform # Use platform ArgoCD project
namespace: platform # Deploy to platform namespace
syncWave: "0" # Deploy in sync wave 0
values:
registerJob:
enabled: true
servicemonitor:
enabled: true
loki:
enabled: true # Log aggregation and storage
project: platform # Use platform ArgoCD project
namespace: platform # Deploy to platform namespace
syncWave: "0" # Deploy in sync wave 0
values:
registerJob:
enabled: true
servicemonitor:
enabled: true
prometheus:
enabled: true # Metrics collection and storage
project: platform # Use platform ArgoCD project
namespace: platform # Deploy to platform namespace
syncWave: "0" # Deploy in sync wave 0
syncOptions:
ServerSideApply: true # Use server-side apply for this app
values:
registerJob:
enabled: true
grafana:
enabled: true # Metrics visualization and dashboards
project: platform # Use platform ArgoCD project
namespace: platform # Deploy to platform namespace
syncWave: "0" # Deploy in sync wave 0
syncOptions:
ServerSideApply: true # Use server-side apply for this app
values:
registerJob:
enabled: true
# =============================================================================
# SYNC WAVE 1: Datasources (Data Layer)
# =============================================================================
# These provide data storage and messaging infrastructure
namespace-datasources:
enabled: true # Create the datasources namespace
project: default # Use default ArgoCD project
namespace: datasources # Kubernetes namespace for datasources
syncWave: "1" # Deploy in sync wave 1 (after platform)
mongodb:
enabled: true # Primary document database
project: datasources # Use datasources ArgoCD project
namespace: datasources # Deploy to datasources namespace
syncWave: "1" # Deploy in sync wave 1
debezium-connect:
enabled: true # Change data capture connector
project: datasources # Use datasources ArgoCD project
namespace: datasources # Deploy to datasources namespace
syncWave: "1" # Deploy in sync wave 1
pinot:
enabled: true # Real-time analytics database
project: datasources # Use datasources ArgoCD project
namespace: datasources # Deploy to datasources namespace
syncWave: "1" # Deploy in sync wave 1
zookeeper:
enabled: true # Distributed coordination service
project: datasources # Use datasources ArgoCD project
namespace: datasources # Deploy to datasources namespace
syncWave: "1" # Deploy in sync wave 1
cassandra:
enabled: true # NoSQL database for time-series data
project: datasources # Use datasources ArgoCD project
namespace: datasources # Deploy to datasources namespace
syncWave: "1" # Deploy in sync wave 1
kafka:
enabled: true # Message streaming platform
project: datasources # Use datasources ArgoCD project
namespace: datasources # Deploy to datasources namespace
syncWave: "1" # Deploy in sync wave 1
mongodb-exporter:
enabled: true # MongoDB metrics exporter for Prometheus
project: datasources # Use datasources ArgoCD project
namespace: datasources # Deploy to datasources namespace
syncWave: "1" # Deploy in sync wave 1
redis:
enabled: true # In-memory data structure store
project: datasources # Use datasources ArgoCD project
namespace: datasources # Deploy to datasources namespace
syncWave: "1" # Deploy in sync wave 1
redis-exporter:
enabled: true # Redis metrics exporter for Prometheus
project: datasources # Use datasources ArgoCD project
namespace: datasources # Deploy to datasources namespace
syncWave: "1" # Deploy in sync wave 1
# =============================================================================
# SYNC WAVE 2: Microservices + Client Tools (Application Layer)
# =============================================================================
# These are the core OpenFrame services and development tools
namespace-microservices:
enabled: true # Create the microservices namespace
project: default # Use default ArgoCD project
namespace: microservices # Kubernetes namespace for microservices
syncWave: "2" # Deploy in sync wave 2 (after datasources)
openframe-config:
enabled: true # Configuration management service
project: microservices # Use microservices ArgoCD project
namespace: microservices # Deploy to microservices namespace
syncWave: "2" # Deploy in sync wave 2
values:
registerJob:
enabled: true
servicemonitor:
enabled: true
image:
repo: ghcr.io/flamingo-stack/openframe-oss-tenant/openframe-config
tag: latest
config:
repo: openframe-config
branch: main
openframe-management:
enabled: true # Management interface service
project: microservices # Use microservices ArgoCD project
namespace: microservices # Deploy to microservices namespace
syncWave: "2" # Deploy in sync wave 2
values:
registerJob:
enabled: true
servicemonitor:
enabled: true
image:
repo: ghcr.io/flamingo-stack/openframe-oss-tenant/openframe-management
tag: latest
openframe-api:
enabled: true # Main API service
project: microservices # Use microservices ArgoCD project
namespace: microservices # Deploy to microservices namespace
syncWave: "2" # Deploy in sync wave 2
values:
registerJob:
enabled: true
servicemonitor:
enabled: true
image:
repo: ghcr.io/flamingo-stack/openframe-oss-tenant/openframe-api
tag: latest
openframe-gateway:
enabled: true # API Gateway service
project: microservices # Use microservices ArgoCD project
namespace: microservices # Deploy to microservices namespace
syncWave: "2" # Deploy in sync wave 2
values:
deployment:
ingress:
localhost:
enabled: true
ngrok:
enabled: false
registerJob:
enabled: true
servicemonitor:
enabled: true
image:
repo: ghcr.io/flamingo-stack/openframe-oss-tenant/openframe-gateway
tag: latest
openframe-client:
enabled: true # Client service
project: microservices # Use microservices ArgoCD project
namespace: microservices # Deploy to microservices namespace
syncWave: "2" # Deploy in sync wave 2
values:
registerJob:
enabled: true
servicemonitor:
enabled: true
image:
repo: ghcr.io/flamingo-stack/openframe-oss-tenant/openframe-client
tag: latest
openframe-stream:
enabled: true # Stream processing service
project: microservices # Use microservices ArgoCD project
namespace: microservices # Deploy to microservices namespace
syncWave: "2" # Deploy in sync wave 2
values:
registerJob:
enabled: true
servicemonitor:
enabled: true
image:
repo: ghcr.io/flamingo-stack/openframe-oss-tenant/openframe-stream
tag: latest
openframe-frontend:
enabled: true # User interface service
project: microservices # Use microservices ArgoCD project
namespace: microservices # Deploy to microservices namespace
syncWave: "2" # Deploy in sync wave 2
values:
deployment:
ingress:
localhost:
enabled: true
ngrok:
enabled: false
registerJob:
enabled: true
image:
repo: ghcr.io/flamingo-stack/openframe-oss-tenant/openframe-frontend
tag: latest
# =============================================================================
# CLIENT TOOLS (Sync Wave 2 - Development Tools)
# =============================================================================
# These are deployed in the same wave as microservices for development convenience
# All client tools use the "client-tools" namespace and "client-tools" project
namespace-client-tools:
enabled: true # Create the client-tools namespace
project: default # Use default ArgoCD project
namespace: client-tools # Kubernetes namespace for client tools
syncWave: "2" # Deploy in sync wave 2 (same as microservices)
mongo-express:
enabled: true # MongoDB web-based admin interface
project: client-tools # Use client-tools ArgoCD project
namespace: client-tools # Deploy to client-tools namespace
syncWave: "2" # Deploy in sync wave 2
kafka-ui:
enabled: true # Kafka web-based admin interface
project: client-tools # Use client-tools ArgoCD project
namespace: client-tools # Deploy to client-tools namespace
syncWave: "2" # Deploy in sync wave 2
telepresence:
enabled: true # Local development tool for Kubernetes
project: client-tools # Use client-tools ArgoCD project
namespace: client-tools # Deploy to client-tools namespace
syncWave: "2" # Deploy in sync wave 2
# =============================================================================
# INTEGRATED TOOLS (Sync Wave 3 - External Integrations)
# =============================================================================
# These are deployed last as they depend on all other services
# All integrated tools use the "integrated-tools" namespace and "integrated-tools" project
namespace-integrated-tools:
enabled: true # Create the integrated-tools namespace
project: default # Use default ArgoCD project
namespace: integrated-tools # Kubernetes namespace for integrated tools
syncWave: "3" # Deploy in sync wave 3 (last)
authentik:
enabled: true # Identity and access management (SSO)
project: integrated-tools # Use integrated-tools ArgoCD project
namespace: integrated-tools # Deploy to integrated-tools namespace
syncWave: "3" # Deploy in sync wave 3
fleetmdm:
enabled: true # Mobile device management
project: integrated-tools # Use integrated-tools ArgoCD project
namespace: integrated-tools # Deploy to integrated-tools namespace
syncWave: "3" # Deploy in sync wave 3
meshcentral:
enabled: true # Remote management and monitoring
project: integrated-tools # Use integrated-tools ArgoCD project
namespace: integrated-tools # Deploy to integrated-tools namespace
syncWave: "3" # Deploy in sync wave 3
tactical-rmm:
enabled: true # Remote monitoring and management
project: integrated-tools # Use integrated-tools ArgoCD project
namespace: integrated-tools # Deploy to integrated-tools namespace
syncWave: "3" # Deploy in sync wave 3
# =============================================================================
# NOTES ON APPS STRUCTURE
# =============================================================================
#
# The apps level serves as the application orchestrator:
# 1. Receives global configuration from app-of-apps
# 2. Defines all ArgoCD applications with their deployment parameters
# 3. Organizes applications by sync waves for proper deployment order
# 4. Groups applications by namespace and project for logical separation
#
# Sync Wave Strategy:
# - Wave 0: Platform services (infrastructure - monitoring, ingress, certs)
# - Wave 1: Datasources (data layer - databases, message queues, caches)
# - Wave 2: Microservices + Client Tools (application layer + dev tools)
# - Wave 3: Integrated Tools (external integrations - SSO, MDM, RMM)
#
# Key differences from app-of-apps:
# - No registry credentials (inherited from app-of-apps)
# - No appsDir setting (not needed at this level)
# - repoBranch is "feature/helm-structure" (vs "main" in app-of-apps)
# - Contains all application definitions with sync waves
#
# =============================================================================