Add networking/IaC topics

This commit is contained in:
Marcelo Boeira
2019-04-20 08:28:24 +02:00
parent 4f34240239
commit 4649245363
2 changed files with 23 additions and 2 deletions

View File

@@ -28,12 +28,14 @@
* Databases
* SQL
* Postgres
* MySQl
* MySQL
* NoSQL
* KeyValue
* [BoJack](https://github.com/marceloboeira/bojack) ✍🏼 💻 🆓
* [Why you should build your own NoSQL database](https://medium.com/@marceloboeira/why-you-should-build-your-own-nosql-database-9bbba42039f5) ✍🏼 📰 🆓
* Operations
* Networking
* Protocols
* Operating Systems
* [Introduction to Operating Systems](https://eu.udacity.com/course/introduction-to-operating-systems--ud923) 🎓 🆓
* Infrastructure as Code

View File

@@ -12,6 +12,7 @@ graph TD
PL --> FunPL[Functional Programming Languages]
FunPL --> Haskell
FunPL --> Lisp
SW --> PT[Programming Topics]
PT --> ALG[Algorithms]
ALG --> SRT[Sorting]
@@ -20,6 +21,7 @@ graph TD
DS --> Graph[Graph]
DS --> T3[Tree]
DS --> HS[Hash]
SW --> DB[Databases]
DB --> SQL[SQL]
SQL --> PgSQL[PostgreSQL]
@@ -34,4 +36,21 @@ graph TD
SRE --> OPS[Operations]
OPS --> OS[Operating Systems]
OPS --> IaC[Infrastructure as Code]
IaC --> TF[Terraform]
IaC --> CfgMgt[Configuration Management]
CfgMgt --> Ppt[Puppet]
CfgMgt --> Ans[Ansible]
CfgMgt --> Che[Chef]
IaC --> Prov[Provisioning]
Prov --> TF[Terraform]
IaC --> Orc[Orchestration]
Orc --> Kubernetes
Orc --> Mesos
Orc --> Nomad
OPS --> NET[Networking]
NET --> NETP[Protocols]
NETP --> Socket
NETP --> UDP
NETP --> TCP
TCP --> SSH
TCP --> HTTP
TCP --> SSL[TLS-SSL]