-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevops-infrastructure-comprehensive.json
More file actions
2858 lines (2858 loc) · 90.4 KB
/
Copy pathdevops-infrastructure-comprehensive.json
File metadata and controls
2858 lines (2858 loc) · 90.4 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
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
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"devops_and_infrastructure": {
"metadata": {
"title": "Comprehensive DevOps & Infrastructure Knowledge Base",
"description": "Complete overview of DevOps tools, technologies, and practices",
"last_updated": "2025-11-17",
"source": "Industry standards and best practices"
},
"1_containerization": {
"description": "Technologies for packaging applications and dependencies into isolated containers",
"core_technologies": {
"docker": {
"description": "Industry-standard containerization platform",
"key_concepts": [
"Docker Images",
"Docker Containers",
"Dockerfile",
"Docker Registry",
"Docker Hub",
"Docker Engine",
"Docker CLI",
"Docker Daemon",
"Container layers",
"Image caching",
"Multi-stage builds",
"Docker volumes",
"Docker networks",
"Docker bridge network",
"Docker host network",
"Docker overlay network"
],
"commands": [
"docker build",
"docker run",
"docker ps",
"docker exec",
"docker logs",
"docker stop",
"docker rm",
"docker rmi",
"docker pull",
"docker push",
"docker tag",
"docker inspect",
"docker stats",
"docker system prune"
],
"best_practices": [
"Use official base images",
"Minimize layer count",
"Leverage build cache",
"Use .dockerignore",
"Run as non-root user",
"Scan images for vulnerabilities",
"Tag images properly",
"Keep images small"
]
},
"docker_compose": {
"description": "Tool for defining and running multi-container Docker applications",
"key_concepts": [
"docker-compose.yml",
"Services definition",
"Networks configuration",
"Volumes management",
"Environment variables",
"Service dependencies",
"Health checks",
"Scaling services"
],
"commands": [
"docker-compose up",
"docker-compose down",
"docker-compose build",
"docker-compose logs",
"docker-compose ps",
"docker-compose exec",
"docker-compose scale",
"docker-compose restart"
],
"use_cases": [
"Local development environments",
"Integration testing",
"Microservices orchestration",
"CI/CD pipelines"
]
},
"alternative_technologies": {
"podman": {
"description": "Daemonless container engine, Docker alternative",
"features": ["Rootless containers", "Pod support", "Docker-compatible CLI"]
},
"lxc_lxd": {
"description": "Linux Containers - system containers",
"features": ["Full OS containers", "Fast startup", "Resource isolation"]
},
"containerd": {
"description": "Industry-standard container runtime",
"features": ["OCI compliant", "Used by Kubernetes", "Lightweight"]
},
"cri-o": {
"description": "Lightweight container runtime for Kubernetes",
"features": ["Kubernetes native", "OCI compliant", "Minimal overhead"]
},
"rkt": {
"description": "Security-focused container runtime (archived)",
"features": ["Pod-native", "Composable", "Security-focused"]
}
},
"container_registries": {
"public": [
"Docker Hub",
"Quay.io",
"GitHub Container Registry (GHCR)",
"Google Container Registry (GCR)"
],
"private": [
"Harbor",
"JFrog Artifactory",
"Sonatype Nexus",
"AWS ECR (Elastic Container Registry)",
"Azure Container Registry (ACR)",
"Google Artifact Registry"
]
},
"security_tools": [
"Trivy - vulnerability scanner",
"Clair - static analysis",
"Anchore - policy enforcement",
"Snyk - security scanning",
"Aqua Security",
"Twistlock/Prisma Cloud"
]
}
},
"2_container_orchestration": {
"description": "Platforms for automating deployment, scaling, and management of containerized applications",
"kubernetes": {
"description": "Industry-leading container orchestration platform",
"core_concepts": {
"cluster_architecture": [
"Master Node (Control Plane)",
"Worker Nodes",
"etcd - distributed key-value store",
"kube-apiserver",
"kube-scheduler",
"kube-controller-manager",
"kubelet",
"kube-proxy",
"Container runtime"
],
"workload_resources": [
"Pods",
"ReplicaSets",
"Deployments",
"StatefulSets",
"DaemonSets",
"Jobs",
"CronJobs"
],
"service_and_networking": [
"Services (ClusterIP, NodePort, LoadBalancer)",
"Ingress",
"Ingress Controllers",
"Network Policies",
"CNI (Container Network Interface)",
"Service Mesh integration",
"DNS for services"
],
"storage": [
"Volumes",
"Persistent Volumes (PV)",
"Persistent Volume Claims (PVC)",
"Storage Classes",
"CSI (Container Storage Interface)",
"StatefulSet storage"
],
"configuration": [
"ConfigMaps",
"Secrets",
"Environment variables",
"Volume mounts"
],
"security": [
"RBAC (Role-Based Access Control)",
"Service Accounts",
"Pod Security Policies",
"Pod Security Standards",
"Network Policies",
"Secrets management",
"Image pull secrets"
],
"observability": [
"Metrics Server",
"Prometheus integration",
"Logging architecture",
"Health checks (liveness, readiness, startup probes)",
"Resource monitoring"
]
},
"kubectl_commands": [
"kubectl get",
"kubectl describe",
"kubectl create",
"kubectl apply",
"kubectl delete",
"kubectl logs",
"kubectl exec",
"kubectl port-forward",
"kubectl scale",
"kubectl rollout",
"kubectl top",
"kubectl config"
],
"deployment_tools": {
"helm": {
"description": "Package manager for Kubernetes",
"concepts": ["Charts", "Releases", "Repositories", "Templates", "Values files"]
},
"kustomize": {
"description": "Template-free Kubernetes configuration",
"concepts": ["Overlays", "Bases", "Patches", "Resources"]
},
"operators": {
"description": "Kubernetes-native applications",
"examples": ["Prometheus Operator", "MySQL Operator", "Elasticsearch Operator"]
}
},
"kubernetes_distributions": [
"Vanilla Kubernetes",
"Google Kubernetes Engine (GKE)",
"Amazon Elastic Kubernetes Service (EKS)",
"Azure Kubernetes Service (AKS)",
"Red Hat OpenShift",
"Rancher",
"K3s (lightweight)",
"MicroK8s",
"Minikube (local)",
"Kind (Kubernetes in Docker)",
"Docker Desktop Kubernetes"
],
"advanced_topics": [
"Custom Resource Definitions (CRDs)",
"Operators and Operator Framework",
"Service Mesh (Istio, Linkerd)",
"GitOps (ArgoCD, Flux)",
"Multi-cluster management",
"Cluster autoscaling",
"Horizontal Pod Autoscaler (HPA)",
"Vertical Pod Autoscaler (VPA)",
"Pod Disruption Budgets",
"Taints and Tolerations",
"Node Affinity and Anti-Affinity"
]
},
"docker_swarm": {
"description": "Docker's native clustering and orchestration solution",
"key_concepts": [
"Swarm mode",
"Manager nodes",
"Worker nodes",
"Services",
"Tasks",
"Stacks",
"Overlay networks",
"Service discovery",
"Load balancing",
"Rolling updates",
"Secrets management",
"Configs"
],
"commands": [
"docker swarm init",
"docker swarm join",
"docker service create",
"docker service scale",
"docker service update",
"docker stack deploy",
"docker node ls"
],
"advantages": [
"Simpler than Kubernetes",
"Integrated with Docker",
"Easy setup",
"Good for small to medium deployments"
]
},
"alternative_orchestrators": {
"nomad": {
"description": "HashiCorp's flexible orchestrator",
"features": ["Multi-workload support", "Simple architecture", "Easy to operate"]
},
"apache_mesos": {
"description": "Distributed systems kernel",
"features": ["Resource isolation", "Two-level scheduling", "Framework support"]
},
"marathon": {
"description": "Container orchestration for Mesos",
"features": ["Service discovery", "Health checks", "Constraints"]
},
"amazon_ecs": {
"description": "AWS container orchestration service",
"features": ["AWS integration", "Fargate support", "Task definitions"]
},
"amazon_ecs_fargate": {
"description": "Serverless container compute",
"features": ["No server management", "Pay per use", "Auto scaling"]
},
"google_cloud_run": {
"description": "Fully managed container platform",
"features": ["Serverless", "Auto scaling", "Pay per request"]
},
"azure_container_instances": {
"description": "Serverless containers on Azure",
"features": ["Fast startup", "Per-second billing", "Virtual network support"]
}
}
},
"3_cloud_platforms": {
"description": "Major cloud service providers and their offerings",
"aws": {
"name": "Amazon Web Services",
"compute": {
"ec2": "Elastic Compute Cloud - virtual servers",
"lambda": "Serverless compute",
"ecs": "Elastic Container Service",
"eks": "Elastic Kubernetes Service",
"fargate": "Serverless containers",
"lightsail": "Simple virtual private servers",
"batch": "Batch processing",
"elastic_beanstalk": "PaaS offering",
"app_runner": "Container-based web apps"
},
"storage": {
"s3": "Simple Storage Service - object storage",
"ebs": "Elastic Block Store",
"efs": "Elastic File System",
"fsx": "Managed file systems",
"glacier": "Cold storage",
"storage_gateway": "Hybrid cloud storage",
"backup": "Centralized backup"
},
"database": {
"rds": "Relational Database Service (MySQL, PostgreSQL, Oracle, SQL Server)",
"aurora": "MySQL and PostgreSQL compatible DB",
"dynamodb": "NoSQL database",
"elasticache": "In-memory caching (Redis, Memcached)",
"redshift": "Data warehouse",
"neptune": "Graph database",
"documentdb": "MongoDB compatible",
"keyspaces": "Cassandra compatible",
"timestream": "Time series database"
},
"networking": {
"vpc": "Virtual Private Cloud",
"route53": "DNS service",
"cloudfront": "CDN",
"elb": "Elastic Load Balancing (ALB, NLB, CLB)",
"api_gateway": "API management",
"direct_connect": "Dedicated network connection",
"transit_gateway": "Network transit hub",
"privatelink": "Private connectivity"
},
"security": {
"iam": "Identity and Access Management",
"cognito": "User authentication",
"secrets_manager": "Secrets management",
"kms": "Key Management Service",
"waf": "Web Application Firewall",
"shield": "DDoS protection",
"guardduty": "Threat detection",
"inspector": "Security assessment",
"macie": "Data security",
"security_hub": "Security posture management"
},
"monitoring_logging": {
"cloudwatch": "Monitoring and observability",
"cloudtrail": "API logging",
"x-ray": "Distributed tracing",
"eventbridge": "Event bus"
},
"devops_tools": {
"codepipeline": "CI/CD orchestration",
"codebuild": "Build service",
"codedeploy": "Deployment automation",
"codecommit": "Git repositories",
"codeartifact": "Artifact repository",
"cloud9": "Cloud IDE"
},
"infrastructure": {
"cloudformation": "Infrastructure as Code",
"cdk": "Cloud Development Kit",
"systems_manager": "Operations management",
"opsworks": "Configuration management"
},
"messaging": {
"sqs": "Simple Queue Service",
"sns": "Simple Notification Service",
"eventbridge": "Event-driven architecture",
"mq": "Managed message broker"
}
},
"gcp": {
"name": "Google Cloud Platform",
"compute": {
"compute_engine": "Virtual machines",
"gke": "Google Kubernetes Engine",
"cloud_run": "Serverless containers",
"cloud_functions": "Serverless functions",
"app_engine": "PaaS offering"
},
"storage": {
"cloud_storage": "Object storage",
"persistent_disk": "Block storage",
"filestore": "Managed file storage",
"archive_storage": "Cold storage"
},
"database": {
"cloud_sql": "Managed relational databases",
"cloud_spanner": "Globally distributed database",
"firestore": "NoSQL document database",
"bigtable": "NoSQL wide-column store",
"memorystore": "Redis and Memcached"
},
"networking": {
"vpc": "Virtual Private Cloud",
"cloud_dns": "DNS service",
"cloud_cdn": "Content delivery",
"cloud_load_balancing": "Load balancing",
"cloud_interconnect": "Dedicated connectivity",
"cloud_armor": "DDoS and WAF protection"
},
"security": {
"iam": "Identity and Access Management",
"cloud_identity": "Identity management",
"secret_manager": "Secrets management",
"kms": "Key management",
"security_command_center": "Security management"
},
"monitoring_logging": {
"cloud_monitoring": "Stackdriver Monitoring",
"cloud_logging": "Centralized logging",
"cloud_trace": "Distributed tracing",
"cloud_profiler": "Performance profiling"
},
"devops_tools": {
"cloud_build": "CI/CD platform",
"artifact_registry": "Package management",
"container_registry": "Container images",
"deployment_manager": "Infrastructure as Code"
}
},
"azure": {
"name": "Microsoft Azure",
"compute": {
"virtual_machines": "VMs",
"aks": "Azure Kubernetes Service",
"container_instances": "Serverless containers",
"functions": "Serverless compute",
"app_service": "Web apps and APIs",
"batch": "Batch processing",
"service_fabric": "Microservices platform"
},
"storage": {
"blob_storage": "Object storage",
"disk_storage": "Block storage",
"files": "Managed file shares",
"queue_storage": "Queue service",
"archive_storage": "Cold storage"
},
"database": {
"sql_database": "Managed SQL Server",
"cosmos_db": "Multi-model database",
"database_for_mysql": "Managed MySQL",
"database_for_postgresql": "Managed PostgreSQL",
"cache_for_redis": "Redis cache",
"synapse_analytics": "Data warehouse"
},
"networking": {
"virtual_network": "VNet",
"dns": "DNS service",
"cdn": "Content delivery",
"load_balancer": "Load balancing",
"application_gateway": "Application load balancer",
"expressroute": "Dedicated connectivity",
"firewall": "Network security"
},
"security": {
"active_directory": "Identity management",
"key_vault": "Secrets and keys",
"security_center": "Security posture",
"sentinel": "SIEM",
"ddos_protection": "DDoS mitigation"
},
"monitoring_logging": {
"monitor": "Monitoring service",
"log_analytics": "Log management",
"application_insights": "APM"
},
"devops_tools": {
"devops": "Azure DevOps (Pipelines, Repos, Boards)",
"artifacts": "Package management",
"resource_manager": "Infrastructure management",
"bicep": "Infrastructure as Code"
}
},
"other_cloud_providers": {
"digitalocean": {
"focus": "Developer-friendly cloud",
"services": ["Droplets", "Kubernetes", "App Platform", "Spaces", "Databases"]
},
"linode": {
"focus": "Simple cloud hosting",
"services": ["Compute instances", "Kubernetes", "Object storage", "Block storage"]
},
"vultr": {
"focus": "High-performance cloud",
"services": ["Cloud compute", "Bare metal", "Kubernetes"]
},
"ibm_cloud": {
"focus": "Enterprise cloud",
"services": ["Virtual servers", "Kubernetes", "Watson AI", "Cloud Foundry"]
},
"oracle_cloud": {
"focus": "Enterprise and database",
"services": ["Compute", "Kubernetes", "Autonomous Database", "Networking"]
},
"alibaba_cloud": {
"focus": "Asia-Pacific cloud leader",
"services": ["ECS", "Container Service", "OSS", "RDS"]
}
},
"multi_cloud_tools": [
"Terraform",
"Pulumi",
"Crossplane",
"CloudQuery",
"Steampipe"
]
},
"4_infrastructure_as_code": {
"description": "Tools and practices for managing infrastructure through code",
"terraform": {
"description": "Multi-cloud infrastructure provisioning",
"vendor": "HashiCorp",
"language": "HCL (HashiCorp Configuration Language)",
"key_concepts": [
"Providers (AWS, Azure, GCP, etc.)",
"Resources",
"Data sources",
"Variables",
"Outputs",
"Modules",
"State files",
"State backends (S3, Terraform Cloud, etc.)",
"Workspaces",
"Remote state",
"State locking",
"Terraform Cloud",
"Terraform Enterprise"
],
"workflow": [
"terraform init - Initialize working directory",
"terraform plan - Preview changes",
"terraform apply - Apply changes",
"terraform destroy - Destroy resources",
"terraform validate - Validate configuration",
"terraform fmt - Format code",
"terraform import - Import existing resources",
"terraform state - State management"
],
"best_practices": [
"Use version control",
"Remote state storage",
"State locking",
"Module composition",
"Variable validation",
"Sensitive data handling",
"Workspace separation",
"Plan before apply",
"Use .tfvars files",
"Document your code"
],
"providers": {
"major": ["AWS", "Azure", "GCP", "Kubernetes", "Docker", "GitHub"],
"count": "3000+ providers available"
}
},
"cloudformation": {
"description": "AWS native infrastructure as code",
"vendor": "Amazon Web Services",
"language": "JSON or YAML",
"key_concepts": [
"Templates",
"Stacks",
"StackSets",
"Change Sets",
"Parameters",
"Resources",
"Outputs",
"Conditions",
"Mappings",
"Intrinsic functions",
"Nested stacks",
"Cross-stack references",
"Drift detection",
"Stack policies"
],
"advantages": [
"Native AWS integration",
"No additional cost",
"AWS service coverage",
"Rollback capabilities",
"Visual designer"
],
"related_tools": {
"cdk": "AWS Cloud Development Kit - Define infrastructure in code",
"sam": "Serverless Application Model",
"amplify": "Full-stack development"
}
},
"ansible": {
"description": "Configuration management and automation",
"vendor": "Red Hat",
"language": "YAML",
"key_concepts": [
"Playbooks",
"Roles",
"Tasks",
"Handlers",
"Variables",
"Templates (Jinja2)",
"Inventory",
"Modules",
"Ansible Galaxy",
"Ansible Tower/AWX",
"Dynamic inventory",
"Vault (secrets)",
"Tags",
"Conditionals",
"Loops"
],
"architecture": [
"Agentless (SSH-based)",
"Push-based model",
"Control node",
"Managed nodes"
],
"use_cases": [
"Configuration management",
"Application deployment",
"Orchestration",
"Provisioning",
"Security automation"
],
"ansible_tower_awx": {
"description": "Enterprise automation platform",
"features": ["Web UI", "RBAC", "Job scheduling", "Workflow orchestration", "API"]
}
},
"pulumi": {
"description": "Modern infrastructure as code using programming languages",
"languages": [
"TypeScript/JavaScript",
"Python",
"Go",
"C#/.NET",
"Java",
"YAML"
],
"key_concepts": [
"Programs (not templates)",
"Projects",
"Stacks",
"Resources",
"Outputs",
"State",
"Pulumi Cloud",
"Automation API",
"Component resources",
"Providers"
],
"advantages": [
"Use familiar programming languages",
"IDE support",
"Testing capabilities",
"Reusability through code",
"Multi-cloud support"
]
},
"chef": {
"description": "Configuration management platform",
"vendor": "Progress (formerly Chef Software)",
"language": "Ruby DSL",
"key_concepts": [
"Cookbooks",
"Recipes",
"Resources",
"Attributes",
"Chef Server",
"Chef Client",
"Chef Workstation",
"Knife tool",
"Chef Supermarket",
"Chef InSpec (compliance)",
"Chef Habitat (application automation)",
"Nodes",
"Roles",
"Environments",
"Data bags"
],
"architecture": [
"Client-server model",
"Pull-based configuration",
"Convergence model"
]
},
"puppet": {
"description": "Configuration management and automation",
"vendor": "Perforce (formerly Puppet)",
"language": "Puppet DSL",
"key_concepts": [
"Manifests",
"Modules",
"Classes",
"Resources",
"Facts",
"Puppet Server",
"Puppet Agent",
"Hiera (data lookup)",
"Forge (module repository)",
"Puppet Enterprise",
"Bolt (orchestration)",
"Catalog",
"Node classifier"
],
"architecture": [
"Client-server model",
"Pull-based configuration",
"Declarative approach"
]
},
"saltstack": {
"description": "Event-driven automation and configuration management",
"vendor": "VMware",
"language": "YAML with Jinja2",
"key_concepts": [
"Salt Master",
"Salt Minions",
"States",
"Pillars",
"Grains",
"Formulas",
"Runners",
"Reactors",
"Event bus",
"Remote execution",
"SaltStack Enterprise"
],
"architecture": [
"Master-minion model",
"Push and pull modes",
"ZeroMQ messaging"
],
"advantages": [
"Fast execution",
"Event-driven",
"Real-time communication",
"Scalable"
]
},
"other_iac_tools": {
"crossplane": {
"description": "Kubernetes-native infrastructure management",
"features": ["CRDs for infrastructure", "Multi-cloud", "GitOps friendly"]
},
"bicep": {
"description": "DSL for Azure Resource Manager",
"features": ["Azure native", "Simpler than ARM JSON", "Type safety"]
},
"arm_templates": {
"description": "Azure Resource Manager templates",
"language": "JSON"
},
"deployment_manager": {
"description": "Google Cloud infrastructure deployment",
"language": "YAML or Python"
},
"cdktf": {
"description": "Cloud Development Kit for Terraform",
"languages": ["TypeScript", "Python", "Java", "C#", "Go"]
}
}
},
"5_cicd_pipelines": {
"description": "Continuous Integration and Continuous Deployment tools and platforms",
"jenkins": {
"description": "Open-source automation server",
"type": "Self-hosted",
"key_concepts": [
"Jenkins Controller (Master)",
"Jenkins Agents (Slaves)",
"Jobs",
"Pipelines",
"Jenkinsfile",
"Declarative Pipeline",
"Scripted Pipeline",
"Plugins (2000+)",
"Blue Ocean UI",
"Multibranch Pipeline",
"Shared Libraries",
"Credentials management",
"Build triggers",
"Post-build actions",
"Workspace",
"Build artifacts"
],
"pipeline_stages": [
"Checkout",
"Build",
"Test",
"Analysis",
"Package",
"Deploy",
"Notify"
],
"popular_plugins": [
"Git",
"Docker",
"Kubernetes",
"Pipeline",
"Blue Ocean",
"Email Extension",
"Slack Notification",
"SonarQube Scanner",
"Artifactory",
"AWS",
"Ansible"
],
"advantages": [
"Highly customizable",
"Extensive plugin ecosystem",
"Self-hosted control",
"Large community"
],
"challenges": [
"Maintenance overhead",
"Plugin compatibility",
"UI complexity"
]
},
"gitlab_ci": {
"description": "GitLab's integrated CI/CD",
"type": "Integrated with GitLab",
"key_concepts": [
".gitlab-ci.yml",
"Pipelines",
"Jobs",
"Stages",
"Runners (shared, specific, group)",
"Artifacts",
"Cache",
"Variables",
"Environments",
"Review apps",
"Auto DevOps",
"Container Registry",
"Package Registry",
"Feature flags",
"Merge request pipelines",
"Parent-child pipelines",
"Directed Acyclic Graph (DAG)"
],
"runner_types": [
"Shared runners",
"Group runners",
"Specific runners"
],
"executor_types": [
"Shell",
"Docker",
"Kubernetes",
"VirtualBox",
"SSH"
],
"advantages": [
"Integrated with GitLab",
"No external tool needed",
"Built-in container registry",
"Auto DevOps features"
]
},
"github_actions": {
"description": "GitHub's native CI/CD and automation",
"type": "Integrated with GitHub",
"key_concepts": [
"Workflows",
"Jobs",
"Steps",
"Actions (reusable units)",
"Runners (GitHub-hosted, self-hosted)",
"Events/Triggers",
"Secrets",
"Artifacts",
"Matrix builds",
"Composite actions",
"Reusable workflows",
"Environment protection rules",
"GitHub Marketplace",
"GITHUB_TOKEN",
"Expressions and contexts"
],
"workflow_triggers": [
"push",
"pull_request",
"schedule (cron)",
"workflow_dispatch (manual)",
"repository_dispatch",
"release",
"issues",
"workflow_call"
],
"runner_options": [
"GitHub-hosted (Ubuntu, Windows, macOS)",
"Self-hosted",
"Larger runners"
],
"advantages": [
"Native GitHub integration",
"Marketplace with thousands of actions",
"Matrix builds",
"No separate tool needed",
"Free for public repos"
]
},
"circleci": {
"description": "Cloud-based CI/CD platform",
"type": "Cloud-hosted",
"key_concepts": [
".circleci/config.yml",
"Workflows",
"Jobs",
"Steps",
"Executors (Docker, Machine, macOS, Windows)",
"Orbs (reusable packages)",
"Contexts (secrets)",
"Caching",
"Artifacts",
"Workspaces",
"Pipeline parameters",
"Dynamic configuration",
"Insights",
"Test splitting"
],
"orbs": {
"description": "Reusable configuration packages",
"registry": "CircleCI Orb Registry"
},
"advantages": [
"Fast builds",
"Docker layer caching",
"SSH debugging",
"Parallel execution",
"Resource classes"
]
},
"travis_ci": {
"description": "CI/CD service for GitHub projects",
"type": "Cloud-hosted",
"key_concepts": [
".travis.yml",
"Build stages",
"Build matrix",
"Caching",
"Environment variables",
"Deployment providers",
"Conditional builds"
],
"supported_languages": [
"Many languages with pre-configured environments"
]
},
"azure_devops": {
"description": "Microsoft's DevOps platform",
"type": "Cloud and on-premises",
"components": {
"pipelines": "CI/CD pipelines",
"repos": "Git repositories",
"boards": "Project tracking",
"artifacts": "Package management",
"test_plans": "Testing tools"
},
"pipeline_concepts": [
"YAML pipelines",
"Classic pipelines",
"Stages",
"Jobs",
"Tasks",
"Agents (Microsoft-hosted, self-hosted)",
"Service connections",