Newer
Older
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
# Big Bang Packages
Each Big Bang Package is present in the [Big Bang Package](https://repo1.dso.mil/platform-one/big-bang/apps) repository and broken up into several sub-groupings.
Each package has _at least_ two `CODEOWNERS`. Responsibilities are outlined [here](ApplicationOwners.md).
[[_TOC_]]
## Dependencies
```mermaid
graph TB
subgraph "Core"
subgraph "Logging"
LoggingElastic(Elasticsearch)
LoggingKibana(Kibana)
LoggingECK(ECK)
LoggingElastic --> LoggingECK
LoggingKibana --> LoggingECK
LoggingKibana --> LoggingElastic
Fluentd --> LoggingElastic
end
subgraph "Monitoring"
Grafana --> Prometheus
Thanos
end
ServiceMesh
ArgoCD
ClusterAuditor --> LoggingECK
ClusterAuditor --> OPA(Policy Enforcement)
end
subgraph "Package Utilities"
Postgres
MinIO(S3 Compatible Storage)
Redis
MySQL
MongoDB
end
subgraph "Security"
Keycloak --> Postgres
Anchore(Anchore Enterprise) --> Postgres
Twistlock
end
subgraph "Developer Tools"
GitLab --> GitLabRunners(GitLab Runners)
GitLab --> MinIO
GitLab --> Redis
GitLab --> Postgres
Sonarqube --> Postgres
end
subgraph "Collaboration Tools"
Jira --> Postgres
Confluence --> Postgres
MatterMost --> MinIO
end
```
## Core
Core packages are supported Big Bang packages that have to be enabled and are located at [Big Bang Core](https://repo1.dso.mil/platform-one/big-bang/apps/core). Core packages are platform/admin level packages that are leveraged by other packages.
```mermaid
graph TB
subgraph "Core"
subgraph "Logging"
LoggingElastic(Elasticsearch)
LoggingKibana(Kibana)
LoggingECK(ECK)
LoggingElastic --> LoggingECK
LoggingKibana --> LoggingECK
LoggingKibana --> LoggingElastic
Fluentd --> LoggingElastic
end
subgraph "Monitoring"
Grafana --> Prometheus
Thanos
end
ServiceMesh
ArgoCD
Twistlock
ClusterAuditor --> LoggingECK
ClusterAuditor --> OPA(Policy Enforcement)
end
```
### ArgoCD
Product:
* [ArgoCD](https://argoproj.github.io/argo-cd/)
Repository:
* [ArgoCD Repo](https://repo1.dso.mil/platform-one/big-bang/apps/core/argocd)
Dependency: None
Owners:
* @joshwolf - Rancher Federal
* @karchaf
Understudy:
* @kavitha
### Service Mesh
Current implementation of Service Mesh is provided by Istio. Service Mesh should be the first Package deployed to ensure other applications are operating with visibility and security.
Product:
* [Istio](https://istio.io/)
Repository:
* [Istio-operator](https://repo1.dso.mil/platform-one/big-bang/apps/core/istio-operator)
* [Istio-controlplane](https://repo1.dso.mil/platform-one/big-bang/apps/core/istio-controlplane)
Dependency: None
Owners:
* @runyontr - Runyon Solutions
Understudy:
* Chris McGrath
* @kavitha
* @kenna81
### Auth Service
authservice helps delegate the OIDC Authorization Code Grant Flow to the Istio mesh. authservice is compatible with any standard OIDC Provider as well as other Istio End-user Auth features, including Authentication Policy and RBAC. Together, they allow developers to protect their APIs and web apps without any application code required.
Product:
* [authservice](https://github.com/istio-ecosystem/authservice)
Repository:
* [authservice](https://repo1.dso.mil/platform-one/big-bang/apps/sandbox/authservice)
Dependency: None
Owners:
* @runyontr - Runyon Solutions
* @nick_tetrate - Tetrate
* @adam.toy - Rancher Federal
Understudy:
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
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
### Logging
The logging package is responsible for deploying Elasticsearch, Kibana, and Fluentd. It is also responsible for configuring the logging pipelines to aggregate all running containers logs for viewing by both Cluster Owners and Application Operators.
The logging capability is comprised of:
* Elastic Cloud on Kubernetes (ECK) Operator
* Elasticsearch
* Kibana
* Fluentd
* Logging Operator
Repository:
* [Elasticsearch-kibana](https://repo1.dso.mil/platform-one/big-bang/apps/core/elasticsearch-kibana)
* [Fluentbit](https://repo1.dso.mil/platform-one/big-bang/apps/core/fluentbit)
* [Eck-operator](https://repo1.dso.mil/platform-one/big-bang/apps/core/eck-operator)
Dependencies:
* RWO StorageClass
Owners:
* @kavitha
* @ryan.j.garcia
Understudy:
* @evan.rush
### Policy Enforcement
The Policy Enforcement Package installs the Open Policy Agent Gatekeeper [Operator](https://kubernetes.io/docs/concepts/extend-kubernetes/operator/).
Product:
* [OPA Gatekeeper](https://github.com/open-policy-agent/gatekeeper)
* [Open Policy Agent](https://www.openpolicyagent.org/)
Repository:
* [Policy Repo](https://repo1.dso.mil/platform-one/big-bang/apps/core/policy)
Dependencies: None
Owners:
* @runyontr - Runyon Solutions
* @karchaf - Cloud Fit Software
Understudy
* @agudem
* @kavitha
### Monitoring
Monitoring is provided by Prometheus, Grafana and Thanos.
Product:
* [Prometheus](https://prometheus.io/)
* [Grafana](https://grafana.com/)
* [Thanos](https://thanos.io/)
Repository:
* [Monitoring Repo](https://repo1.dso.mil/platform-one/big-bang/apps/core/monitoring)
Dependencies: None
Owners:
* @lynnStill
* @ryan.j.garcia
### Cluster Auditor
Cluster Auditor is an internal tool that provides compliance information to Cluster Owners and Application Developers for insight into Reference DevSecOps compliance
Product:
Repository: [Cluster Auditor](https://repo1.dso.mil/platform-one/big-bang/apps/core/cluster-auditor)
Dependencies:
* [Logging](#Logging)
* [OPA Gatekeer](#policy-enforcement)
Owners:
* @runyontr - Runyon Solutions
* @thomas.burton - iSenpai
Understudy:
* @agill17
* @kenna81
Repository:
* [Cluster Auditor Repo](https://repo1.dso.mil/platform-one/big-bang/apps/core/cluster-auditor)
### Twistlock
Twistlock provides runtime vulnerability detection
Product:
* [Twistlock](https://www.twistlock.com/labs-/)
Repository: [Twistlock Repo](https://repo1.dso.mil/platform-one/big-bang/apps/security-tools/twistlock)
Dependencies:
* RWO StorageClass
Owners:
* @runyontr - Runyon Solutions
* @thomas.burton - iSenpai
## Addons
Addons are supported Big Bang packages that come disabled by default.
### Security Tools
Security Tools are hosted here: [Security Tools](https://repo1.dso.mil/platform-one/big-bang/apps/security-tools)
```mermaid
graph TB
subgraph "Package Utilities"
Postgres
end
subgraph "Security"
Keycloak --> Postgres
Anchore(Anchore Enterprise) --> Postgres
end
```
#### Keycloak
Keycloak provides SSO to applications.
Product:
* [Keycloak](https://www.keycloak.org/)
* [Postgres](https://www.postgresql.org/)
Repository: [Keycloak](https://repo1.dso.mil/platform-one/big-bang/apps/security-tools/keycloak)
Dependencies:
* Postgres
Owners:
* @megamind
* @joshwolf
Understudy:
* @agudem
* @kenna81
#### Anchore Enterprise
Product:
* [Anchore Enterprise](https://anchore.com/enterprise/)
Repository: [Anchore Enterprise Repo](https://repo1.dso.mil/platform-one/big-bang/apps/security-tools/anchore-enterprise)
Dependencies:
* postgres
Owners:
* @thomas.burton - iSenpai
* @james.peterson - Anchore
### Developer Tools
Developer Tools are hosted here: [Developer Tools](https://repo1.dso.mil/platform-one/big-bang/apps/developer-tools)
```mermaid
graph TB
subgraph "Application Utilities"
Postgres
MinIO(S3 Compatible Storage)
Redis
end
subgraph "Package Tools"
GitLab --> GitLabRunners(GitLab Runners)
GitLab --> MinIO
GitLab --> Redis
GitLab --> Postgres
Sonarqube --> Postgres
end
```
#### GitLab
GitLab is a product for providing DevOps including planning, code hosting, and CICD
Product:
* [GitLab](https://docs.gitlab.com/)
Repository:
* [GitLab Repo](https://repo1.dso.mil/platform-one/big-bang/apps/developer-tools/gitlab)
Dependencies:
* postgres
* S3 compatible object store (ex: [Minio](#minio))
* Redis
* RWO StorageClass
Owners:
* @ryan.j.garcia
* @LynnStill
#### GitLab Runners
GitLab Runners are pods that run jobs for GitLab CI/CD
Product:
* [GitLab Runners](https://docs.gitlab.com/runner/)
Repository:
* [GitLab Runners Repo](https://repo1.dso.mil/platform-one/big-bang/apps/developer-tools/gitlab-runner)
Dependencies:
* [GitLab](#gitlab)
Owners:
* @ryan.j.garcia
* @LynnStill
Understudies
* @kevin.wilder
#### Sonarqube
Sonarqube provides code reviews for code quality and security
Product:
* [Sonarqube](https://www.sonarqube.org/)
Repository:
* [Sonarqube Repo](https://repo1.dso.mil/platform-one/big-bang/apps/developer-tools/sonarqube)
Dependencies:
* postgres
* RWO StorageClass
Owners:
* @kevin.wilder
* @LynnStill
#### Fortify
Fortify provides code
Product:
*
Repository:
* [Fortify Repo](https://repo1.dso.mil/platform-one/big-bang/apps/developer-tools/fortify)
Dependencies:
Owners:
* @kevin.wilder
* @LynnStill
### Collaboration Tools
Collaboration tools are hosted here: [Collaboration Tools](https://repo1.dso.mil/platform-one/big-bang/apps/collaboration-tools)
```mermaid
graph TB
subgraph "Package Utilities"
Postgres
MinIO(S3 Compatible Storage)
end
subgraph "Collaboration Tools"
Jira --> Postgres
Confluence --> Postgres
MatterMost --> MinIO
end
```
#### Confluence
Confluence provides a centralized workspace for collaborating on documentation
Product:
* [Confluence](https://www.atlassian.com/software/confluence)
Repository:
* [Confluence Repo](https://repo1.dso.mil/platform-one/big-bang/apps/collaboration-tools/confluence)
Dependencies:
* Postgres
* RWM StorageClass (if HA)
Owners:
* @matt.kaiser
* @branden.cobb
#### Jira
Development tool for planning and tracking team tasks
Product:
* [Jira](https://www.atlassian.com/software/jira)
Repository:
* [Jira Repo](https://repo1.dso.mil/platform-one/big-bang/apps/collaboration-tools/jira)
Dependencies:
* Postgres
* RWM StorageClass (if HA)
Owners:
* @matt.kaiser
* @branden.cobb
#### Mattermost
Mattermost is an open sourced messaging platform.
Product:
* [Mattermost](https://mattermost.com/)
Repository:
* [Mattermost Repo](https://repo1.dso.mil/platform-one/big-bang/apps/collaboration-tools/mattermost)ß
Dependencies:
* S3 compatible object store (ex: [Minio](#minio))
Owners:
* @ryan.j.garcia
* @kevin.wilder
### Package Utilities
Application utilities are deployments of utilities used by one or more packages. They are usually not user facing, and are dependencies of user facing packages.
A clear an obvious example of this is PostgreSQL.
```mermaid
graph TB
subgraph "Package Utilities"
Postgres
MinIO(S3 Compatible Storage)
Redis
MySQL
MongoDB
end
```
#### PostgreSQL
Product:
* [PostgreSQL](https://www.postgresql.org/)
Repository:
* TBD
Owners:
* TBD
* TBD
#### Minio
Minio provides S3 compatible object storage
Product:
* [MinIO](https://min.io/)
Repository: TBD
Dependencies: None
Owners:
* @kevin.wilder - Dark Wolf Solutions
* @branden.cobb
#### MySQL
Product:
* [MySQL](https://www.mysql.com/)
Repository:
* TBD
Owners:
* TBD
* TBD
#### MongoDB
Product:
* [MongoDB](https://www.mongodb.com/)
Repository:
* TBD
Owners:
* TBD
* TBD
### Sandbox
The [Sandbox](https://repo1.dso.mil/platform-one/big-bang/apps/sandbox) is an area for packages that are currently being or will be worked that do not yet meet the requirements of a supported package. Due to the fluidity of sandbox apps, they are not tracked in the charter.
Note, this is _not_ a place where packages go to die. If a package is abandoned for whatever reason it will be archived.
To graduate from a sandbox package, it must meet the requirements outlined in this charter.