-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathplatform-engineer.json
More file actions
389 lines (389 loc) Β· 18.5 KB
/
Copy pathplatform-engineer.json
File metadata and controls
389 lines (389 loc) Β· 18.5 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
{
"title": "Platform Engineer",
"description": "Build and maintain internal developer platforms β from container orchestration and CI/CD pipelines to self-service infrastructure, developer portals, and observability at scale.",
"icon": "π§",
"categories": ["fundamentals", "intermediate", "advanced", "tools"],
"nodes": [
{
"id": "plat-linux-fundamentals",
"title": "Linux & Shell Fundamentals",
"icon": "π§",
"category": "fundamentals",
"description": "Linux system administration, shell scripting, process management, file systems, and networking basics.",
"difficulty": "Beginner",
"resources": [
{ "title": "Linux Journey", "url": "https://linuxjourney.com/", "type": "course", "free": true },
{ "title": "The Linux Command Line (Book)", "url": "https://linuxcommand.org/tlcl.php", "type": "docs", "free": true },
{ "title": "Shell Scripting Tutorial", "url": "https://www.shellscript.sh/", "type": "tutorial", "free": true }
]
},
{
"id": "plat-networking",
"title": "Networking Fundamentals",
"icon": "π",
"category": "fundamentals",
"description": "TCP/IP, DNS, HTTP/S, load balancing, VPNs, subnets, firewalls, and network troubleshooting.",
"difficulty": "Beginner",
"resources": [
{ "title": "Networking for Developers", "url": "https://www.youtube.com/watch?v=0TLDTodZA7L&list=PLG49S3nxzAnmpdmXUROvS7BOeNp3CQ6O", "type": "video", "free": true },
{ "title": "Cloudflare Learning Center", "url": "https://www.cloudflare.com/learning/", "type": "docs", "free": true }
]
},
{
"id": "plat-version-control",
"title": "Git & Version Control",
"icon": "π",
"category": "fundamentals",
"description": "Git workflows, branching strategies, merge conflicts, rebasing, and collaboration with GitHub/GitLab.",
"difficulty": "Beginner",
"resources": [
{ "title": "Pro Git Book", "url": "https://git-scm.com/book/en/v2", "type": "docs", "free": true },
{ "title": "Learn Git Branching", "url": "https://learngitbranching.js.org/", "type": "tutorial", "free": true }
]
},
{
"id": "plat-containers",
"title": "Container Fundamentals",
"icon": "π¦",
"category": "fundamentals",
"description": "Docker containers, images, Dockerfiles, volumes, networking, multi-stage builds, and container security.",
"difficulty": "Beginner",
"resources": [
{ "title": "Docker Getting Started", "url": "https://docs.docker.com/get-started/", "type": "docs", "free": true },
{ "title": "Docker Tutorial for Beginners", "url": "https://www.youtube.com/watch?v=fqMOX6JJhFA", "type": "video", "free": true },
{ "title": "Play with Docker", "url": "https://labs.play-with-docker.com/", "type": "tutorial", "free": true }
]
},
{
"id": "plat-container-orchestration",
"title": "Container Orchestration (Kubernetes)",
"icon": "βΈοΈ",
"category": "intermediate",
"description": "Kubernetes architecture, pods, deployments, services, ConfigMaps, secrets, Helm charts, and cluster management.",
"difficulty": "Intermediate",
"resources": [
{ "title": "Kubernetes Documentation", "url": "https://kubernetes.io/docs/home/", "type": "docs", "free": true },
{ "title": "Kubernetes the Hard Way", "url": "https://github.com/kelseyhightower/kubernetes-the-hard-way", "type": "tutorial", "free": true },
{ "title": "KillerCoda Labs", "url": "https://killercoda.com/", "type": "tutorial", "free": true }
]
},
{
"id": "plat-cicd",
"title": "CI/CD Pipelines",
"icon": "π",
"category": "intermediate",
"description": "GitHub Actions, GitLab CI, Jenkins, ArgoCD β build, test, deploy automation pipelines.",
"difficulty": "Intermediate",
"resources": [
{ "title": "GitHub Actions Documentation", "url": "https://docs.github.com/en/actions", "type": "docs", "free": true },
{ "title": "CI/CD Pipeline Tutorial", "url": "https://www.youtube.com/watch?v=Q9zU6D7zR4s", "type": "video", "free": true },
{ "title": "ArgoCD Getting Started", "url": "https://argo-cd.readthedocs.io/en/stable/getting_started/", "type": "docs", "free": true }
]
},
{
"id": "plat-iac",
"title": "Infrastructure as Code",
"icon": "ποΈ",
"category": "intermediate",
"description": "Terraform, Pulumi, CloudFormation β declarative infrastructure management, modules, state, and drift detection.",
"difficulty": "Intermediate",
"resources": [
{ "title": "Terraform Learn", "url": "https://learn.hashicorp.com/terraform", "type": "course", "free": true },
{ "title": "Terraform Documentation", "url": "https://developer.hashicorp.com/terraform/docs", "type": "docs", "free": true },
{ "title": "Pulumi Getting Started", "url": "https://www.pulumi.com/docs/get-started/", "type": "docs", "free": true }
]
},
{
"id": "plat-cloud-providers",
"title": "Cloud Providers (AWS/GCP/Azure)",
"icon": "βοΈ",
"category": "intermediate",
"description": "Core services across major cloud providers β compute, storage, networking, IAM, and managed services.",
"difficulty": "Intermediate",
"resources": [
{ "title": "AWS Free Tier", "url": "https://aws.amazon.com/free/", "type": "tool", "free": true },
{ "title": "GCP Free Tier", "url": "https://cloud.google.com/free", "type": "tool", "free": true },
{ "title": "Azure Free Account", "url": "https://azure.microsoft.com/en-us/free/", "type": "tool", "free": true }
]
},
{
"id": "plat-observability",
"title": "Observability & Monitoring",
"icon": "π",
"category": "intermediate",
"description": "Prometheus, Grafana, ELK Stack, Datadog β metrics, logs, traces, alerts, and dashboards.",
"difficulty": "Intermediate",
"resources": [
{ "title": "Prometheus Documentation", "url": "https://prometheus.io/docs/", "type": "docs", "free": true },
{ "title": "Grafana Tutorials", "url": "https://grafana.com/tutorials/", "type": "tutorial", "free": true },
{ "title": "OpenTelemetry", "url": "https://opentelemetry.io/docs/", "type": "docs", "free": true }
]
},
{
"id": "plat-service-mesh",
"title": "Service Mesh",
"icon": "πΈοΈ",
"category": "advanced",
"description": "Istio, Linkerd β traffic management, mTLS, circuit breaking, canary deployments, and observability.",
"difficulty": "Advanced",
"resources": [
{ "title": "Istio Documentation", "url": "https://istio.io/latest/docs/", "type": "docs", "free": true },
{ "title": "Linkerd Getting Started", "url": "https://linkerd.io/2/getting-started/", "type": "tutorial", "free": true }
]
},
{
"id": "plat-dev-portals",
"title": "Developer Portals & Self-Service",
"icon": "πͺ",
"category": "advanced",
"description": "Backstage, custom developer portals, service catalogs, templates, and self-service infrastructure.",
"difficulty": "Advanced",
"resources": [
{ "title": "Backstage Documentation", "url": "https://backstage.io/docs/overview/what-is-backstage", "type": "docs", "free": true },
{ "title": "Backstage Getting Started", "url": "https://backstage.io/docs/getting-started/", "type": "tutorial", "free": true }
]
},
{
"id": "plat-secret-mgmt",
"title": "Secret Management",
"icon": "π",
"category": "advanced",
"description": "HashiCorp Vault, AWS Secrets Manager, sealed secrets β managing credentials, certificates, and encryption keys.",
"difficulty": "Advanced",
"resources": [
{ "title": "Vault Tutorials", "url": "https://learn.hashicorp.com/vault", "type": "course", "free": true },
{ "title": "Sealed Secrets", "url": "https://github.com/bitnami-labs/sealed-secrets", "type": "docs", "free": true }
]
},
{
"id": "plat-policy-governance",
"title": "Policy & Governance",
"icon": "π",
"category": "advanced",
"description": "OPA/Gatekeeper, Kyverno, Sentinel β policy-as-code for Kubernetes, cloud resources, and CI/CD pipelines.",
"difficulty": "Advanced",
"resources": [
{ "title": "OPA Documentation", "url": "https://www.openpolicyagent.org/docs/latest/", "type": "docs", "free": true },
{ "title": "Kyverno Documentation", "url": "https://kyverno.io/docs/", "type": "docs", "free": true }
]
},
{
"id": "plat-scalability",
"title": "Scalability & Reliability",
"icon": "π",
"category": "advanced",
"description": "Horizontal/vertical scaling, auto-scaling, disaster recovery, multi-region deployments, chaos engineering.",
"difficulty": "Advanced",
"resources": [
{ "title": "Chaos Engineering (Gremlin)", "url": "https://www.gremlin.com/chaos-engineering/", "type": "docs", "free": true },
{ "title": "Litmus Chaos", "url": "https://litmuschaos.io/", "type": "tool", "free": true }
]
},
{
"id": "plat-crossplane",
"title": "Crossplane & Control Planes",
"icon": "π§©",
"category": "advanced",
"description": "Build custom control planes with Crossplane β manage cloud resources through Kubernetes-native APIs.",
"difficulty": "Advanced",
"resources": [
{ "title": "Crossplane Documentation", "url": "https://docs.crossplane.io/", "type": "docs", "free": true },
{ "title": "Crossplane Getting Started", "url": "https://docs.crossplane.io/latest/getting-started/", "type": "tutorial", "free": true }
]
},
{
"id": "plat-helm",
"title": "Helm & Kustomize",
"icon": "β",
"category": "intermediate",
"description": "Helm charts, Kustomize overlays β package management and configuration for Kubernetes.",
"difficulty": "Intermediate",
"resources": [
{ "title": "Helm Documentation", "url": "https://helm.sh/docs/", "type": "docs", "free": true },
{ "title": "Kustomize Documentation", "url": "https://kubectl.docs.kubernetes.io/guides/introduction/kustomize/", "type": "docs", "free": true }
]
},
{
"id": "plat-cost-optimization",
"title": "Cost Optimization",
"icon": "π°",
"category": "advanced",
"description": "Cloud cost analysis, right-sizing, spot instances, reserved capacity, Kubecost, and FinOps practices.",
"difficulty": "Advanced",
"resources": [
{ "title": "Kubecost", "url": "https://www.kubecost.com/", "type": "tool", "free": true },
{ "title": "AWS Cost Explorer", "url": "https://aws.amazon.com/aws-cost-management/aws-cost-explorer/", "type": "docs", "free": true }
]
},
{
"id": "plat-security",
"title": "Platform Security",
"icon": "π‘οΈ",
"category": "intermediate",
"description": "RBAC, network policies, pod security standards, container scanning, SAST/DAST in pipelines.",
"difficulty": "Intermediate",
"resources": [
{ "title": "Kubernetes Security Best Practices", "url": "https://kubernetes.io/docs/concepts/security/", "type": "docs", "free": true },
{ "title": "Trivy Container Scanner", "url": "https://aquasecurity.github.io/trivy/", "type": "tool", "free": true }
]
},
{
"id": "plat-gitops",
"title": "GitOps Workflows",
"icon": "π",
"category": "intermediate",
"description": "GitOps principles with Flux and ArgoCD β declarative infrastructure driven by Git.",
"difficulty": "Intermediate",
"resources": [
{ "title": "Flux Documentation", "url": "https://fluxcd.io/docs/", "type": "docs", "free": true },
{ "title": "ArgoCD Documentation", "url": "https://argo-cd.readthedocs.io/en/stable/", "type": "docs", "free": true }
]
},
{
"id": "plat-dbaas",
"title": "Database as a Service",
"icon": "ποΈ",
"category": "intermediate",
"description": "Managed databases, database operators, backup strategies, connection pooling, and multi-tenancy.",
"difficulty": "Intermediate",
"resources": [
{ "title": "CrunchyData PostgreSQL Operator", "url": "https://access.crunchydata.com/documentation/postgres-operator/", "type": "docs", "free": true },
{ "title": "Strimzi Kafka Operator", "url": "https://strimzi.io/", "type": "tool", "free": true }
]
},
{
"id": "plat-internal-tools",
"title": "Internal Tooling & Automation",
"icon": "π¨",
"category": "advanced",
"description": "Custom CLIs, automation scripts, webhook handlers, bot integrations, and platform glue code.",
"difficulty": "Advanced",
"resources": [
{ "title": "Cobra CLI (Go)", "url": "https://github.com/spf13/cobra", "type": "docs", "free": true },
{ "title": "Click (Python)", "url": "https://click.palletsprojects.com/", "type": "docs", "free": true }
]
},
{
"id": "plat-api-gateway",
"title": "API Gateways & Management",
"icon": "π¦",
"category": "intermediate",
"description": "Kong, Envoy, Traefik β rate limiting, authentication, routing, and API versioning.",
"difficulty": "Intermediate",
"resources": [
{ "title": "Kong Documentation", "url": "https://docs.konghq.com/", "type": "docs", "free": true },
{ "title": "Envoy Documentation", "url": "https://www.envoyproxy.io/docs/envoy/latest/", "type": "docs", "free": true }
]
},
{
"id": "plat-logging",
"title": "Centralized Logging",
"icon": "π",
"category": "intermediate",
"description": "ELK Stack, Loki, Fluentd/Fluent Bit β log aggregation, structured logging, and log analysis.",
"difficulty": "Intermediate",
"resources": [
{ "title": "Grafana Loki", "url": "https://grafana.com/docs/loki/latest/", "type": "docs", "free": true },
{ "title": "Fluentd Documentation", "url": "https://docs.fluentd.org/", "type": "docs", "free": true }
]
},
{
"id": "plat-incident-mgmt",
"title": "Incident Management",
"icon": "π¨",
"category": "advanced",
"description": "On-call rotations, runbooks, post-mortems, PagerDuty/OpsGenie, and blameless culture.",
"difficulty": "Advanced",
"resources": [
{ "title": "Google SRE Book β On-Call", "url": "https://sre.google/sre-book/on-call/", "type": "docs", "free": true },
{ "title": "Postmortem Template", "url": "https://sre.google/sre-book/postmortem-culture/", "type": "docs", "free": true }
]
},
{
"id": "plat-terraform-modules",
"title": "Terraform Modules & Patterns",
"icon": "π§±",
"category": "advanced",
"description": "Reusable Terraform modules, Terragrunt, module registries, testing with Terratest.",
"difficulty": "Advanced",
"resources": [
{ "title": "Terraform Modules", "url": "https://developer.hashicorp.com/terraform/language/modules", "type": "docs", "free": true },
{ "title": "Terragrunt", "url": "https://terragrunt.gruntwork.io/", "type": "tool", "free": true }
]
},
{
"id": "plat-ci-templates",
"title": "CI/CD Templates & Libraries",
"icon": "π",
"category": "intermediate",
"description": "Reusable pipeline templates, shared libraries, composite actions, and pipeline-as-code patterns.",
"difficulty": "Intermediate",
"resources": [
{ "title": "GitHub Actions Reusable Workflows", "url": "https://docs.github.com/en/actions/using-workflows/reusing-workflows", "type": "docs", "free": true },
{ "title": "GitLab CI Templates", "url": "https://docs.gitlab.com/ee/ci/yaml/includes.html", "type": "docs", "free": true }
]
},
{
"id": "plat-k8s-operators",
"title": "Kubernetes Operators",
"icon": "βοΈ",
"category": "advanced",
"description": "Build and use Kubernetes operators with Operator SDK, Kubebuilder, and Ansible Operator.",
"difficulty": "Advanced",
"resources": [
{ "title": "Operator SDK", "url": "https://sdk.operatorframework.io/", "type": "docs", "free": true },
{ "title": "Kubebuilder", "url": "https://book.kubebuilder.io/", "type": "docs", "free": true }
]
},
{
"id": "plat-supply-chain",
"title": "Software Supply Chain Security",
"icon": "π",
"category": "advanced",
"description": "SBOM, SLSA framework, Sigstore/Cosign, artifact signing, provenance, and chain-of-custody.",
"difficulty": "Advanced",
"resources": [
{ "title": "Sigstore", "url": "https://www.sigstore.dev/", "type": "tool", "free": true },
{ "title": "SLSA Framework", "url": "https://slsa.dev/", "type": "docs", "free": true }
]
},
{
"id": "plat-devex",
"title": "Developer Experience (DevEx)",
"icon": "β¨",
"category": "advanced",
"description": "Measuring and improving developer productivity, golden paths, onboarding, and platform adoption.",
"difficulty": "Advanced",
"resources": [
{ "title": "Team Topologies", "url": "https://teamtopologies.com/", "type": "docs", "free": true },
{ "title": "DORA Metrics", "url": "https://dora.dev/", "type": "docs", "free": true }
]
},
{
"id": "plat-multi-cluster",
"title": "Multi-Cluster Management",
"icon": "π",
"category": "advanced",
"description": "Federation, Karmada, Cluster API, multi-cluster networking, and workload distribution.",
"difficulty": "Advanced",
"resources": [
{ "title": "Cluster API", "url": "https://cluster-api.sigs.k8s.io/", "type": "docs", "free": true },
{ "title": "Karmada", "url": "https://karmada.io/", "type": "tool", "free": true }
]
},
{
"id": "plat-tools",
"title": "Essential Platform Tools",
"icon": "π§°",
"category": "tools",
"description": "kubectl, k9s, Lens, Skaffold, Tilt, Telepresence, Dive, krew plugins, and more.",
"difficulty": "Beginner",
"resources": [
{ "title": "k9s", "url": "https://k9scli.io/", "type": "tool", "free": true },
{ "title": "Lens IDE", "url": "https://k8slens.dev/", "type": "tool", "free": true },
{ "title": "Skaffold", "url": "https://skaffold.dev/", "type": "tool", "free": true },
{ "title": "Tilt", "url": "https://tilt.dev/", "type": "tool", "free": true }
]
}
]
}