Skip to content

Commit f477156

Browse files
fix: improvements from recording 19.08.2025
1 parent 06156ef commit f477156

File tree

2 files changed

+29
-137
lines changed

2 files changed

+29
-137
lines changed

README.md

Lines changed: 18 additions & 86 deletions
Original file line numberDiff line numberDiff line change
@@ -148,11 +148,6 @@ We are so thankful for every contribution, which makes sure we can deliver top-n
148148
- [Total Cost of Ownership (TCO)](#total-cost-of-ownership-tco)
149149
- [Cost Optimization Strategies](#cost-optimization-strategies)
150150
- [Shared Responsibility Model](#shared-responsibility-model)
151-
- [Cloud Services Types](#cloud-services-types)
152-
- [Infrastructure as a Service (IaaS)](#infrastructure-as-a-service-iaas)
153-
- [Platform as a Service (PaaS)](#platform-as-a-service-paas)
154-
- [Software as a Service (SaaS)](#software-as-a-service-saas)
155-
- [Serverless Computing](#serverless-computing)
156151

157152
- [Core Azure Services](#core-azure-services)
158153
- [Azure Compute Services](#azure-compute-services)
@@ -793,6 +788,12 @@ Think of cloud computing like electricity. Instead of generating your own power,
793788
- **What it is:**
794789
Azure IaaS provides virtualized computing resources over the internet. You manage the operating system, middleware, and applications, while Azure manages the physical infrastructure.
795790
791+
- **Azure Examples:**
792+
- **Azure Virtual Machines**: Complete control over OS and applications
793+
- **Azure Storage**: Scalable storage solutions (Blob, File, Queue, Table)
794+
- **Azure Virtual Network**: Private networking and connectivity
795+
- **Azure Load Balancer**: Traffic distribution and high availability
796+
796797
- **Practical Example:**
797798
A company migrating their on-premises servers to Azure:
798799
@@ -822,6 +823,12 @@ Think of cloud computing like electricity. Instead of generating your own power,
822823
- **What it is:**
823824
Azure PaaS provides a platform allowing customers to develop, run, and manage applications without the complexity of building and maintaining the infrastructure.
824825
826+
- **Azure Examples:**
827+
- **Azure App Service**: Managed web application hosting with built-in CI/CD
828+
- **Azure Functions**: Serverless compute for event-driven applications
829+
- **Azure SQL Database**: Fully managed relational database service
830+
- **Azure Kubernetes Service (AKS)**: Managed Kubernetes container orchestration
831+
825832
- **Practical Example:**
826833
A web application deployment:
827834
@@ -881,6 +888,12 @@ Think of cloud computing like electricity. Instead of generating your own power,
881888
- **What it is:**
882889
Azure SaaS delivers software applications over the internet, eliminating the need to install and run applications on individual computers.
883890
891+
- **Azure Examples:**
892+
- **Microsoft 365**: Complete productivity suite (Office, Teams, SharePoint)
893+
- **Salesforce**: Customer relationship management platform
894+
- **Dropbox**: Cloud file storage and sharing
895+
- **Zoom**: Video conferencing and communication platform
896+
884897
- **Practical Example:**
885898
Enterprise productivity tools:
886899
@@ -1265,87 +1278,6 @@ Effective cost management in the cloud involves several strategies:
12651278
- **Application Security**: Varies by service model
12661279
- **Network Security**: Varies by service model
12671280

1268-
#### Cloud Services Types
1269-
1270-
Cloud services are categorized into different models based on the level of control and management provided:
1271-
1272-
##### Infrastructure as a Service (IaaS)
1273-
1274-
- **What it is**: Provides virtualized computing resources over the internet
1275-
- **What you manage**: Applications, data, runtime, middleware, OS
1276-
- **What the provider manages**: Virtualization, servers, storage, networking
1277-
1278-
**Examples**:
1279-
1280-
- Virtual machines
1281-
- Storage
1282-
- Networking
1283-
- Operating systems
1284-
1285-
**Benefits**:
1286-
1287-
- Highest level of control
1288-
- Closest to traditional IT resources
1289-
- Pay only for what you use
1290-
1291-
##### Platform as a Service (PaaS)
1292-
1293-
- **What it is**: Provides a platform for developing, testing, and managing applications
1294-
- **What you manage**: Applications and data
1295-
- **What the provider manages**: Runtime, middleware, OS, virtualization, servers, storage, networking
1296-
1297-
**Examples**:
1298-
1299-
- Development tools
1300-
- Database management
1301-
- Business analytics
1302-
- Operating systems
1303-
1304-
**Benefits**:
1305-
1306-
- Faster development
1307-
- Built-in scalability
1308-
- Reduced management overhead
1309-
1310-
##### Software as a Service (SaaS)
1311-
1312-
- **What it is**: Software applications delivered over the internet
1313-
- **What you manage**: Data and user access
1314-
- **What the provider manages**: Everything else
1315-
1316-
**Examples**:
1317-
1318-
- Email services
1319-
- Office applications
1320-
- Customer relationship management
1321-
- Enterprise resource planning
1322-
1323-
**Benefits**:
1324-
1325-
- No software installation
1326-
- Automatic updates
1327-
- Access from anywhere
1328-
1329-
##### Serverless Computing
1330-
1331-
- **What it is**: Event-driven computing where you don't manage servers
1332-
- **What you manage**: Code and data
1333-
- **What the provider manages**: Everything else
1334-
1335-
**Examples**:
1336-
1337-
- Event-driven functions
1338-
- Pay-per-use execution
1339-
- No server management
1340-
- Automatic scaling
1341-
1342-
**Benefits**:
1343-
1344-
- No server management
1345-
- Pay only for execution time
1346-
- Automatic scaling
1347-
- Event-driven architecture
1348-
13491281
## Core Azure Services
13501282

13511283
### Azure Compute Services

__presentation-slides/index.html

Lines changed: 11 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -466,15 +466,6 @@
466466

467467
---
468468

469-
### Shared Responsibility Model - IaaS (Customer) <!-- .slide: data-transition="zoom" data-transition-speed="slow" -->
470-
471-
* Operating System <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
472-
* Applications <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
473-
* Data <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
474-
* Runtime <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
475-
* Middleware <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
476-
477-
---
478469

479470
### Shared Responsibility Model - IaaS (Provider) <!-- .slide: data-transition="zoom" data-transition-speed="slow" -->
480471

@@ -485,11 +476,12 @@
485476

486477
---
487478

488-
### Shared Responsibility Model - PaaS (Customer) <!-- .slide: data-transition="zoom" data-transition-speed="slow" -->
479+
### Shared Responsibility Model - IaaS (Customer) <!-- .slide: data-transition="zoom" data-transition-speed="slow" -->
489480

490-
* Applications <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
491-
* Data <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
492-
* Access Management <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
481+
* Operating System <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
482+
* Network Configuration <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
483+
* Application Security <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
484+
* Data Security <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
493485

494486
---
495487

@@ -503,9 +495,10 @@
503495

504496
---
505497

506-
### Shared Responsibility Model - SaaS (Customer) <!-- .slide: data-transition="zoom" data-transition-speed="slow" -->
498+
### Shared Responsibility Model - PaaS (Customer) <!-- .slide: data-transition="zoom" data-transition-speed="slow" -->
507499

508-
* Data <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
500+
* Application Security <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
501+
* Data Security <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
509502
* Access Management <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
510503

511504
---
@@ -521,43 +514,10 @@
521514

522515
---
523516

524-
### Cloud Services Types <!-- .slide: data-transition="zoom" data-transition-speed="slow" -->
525-
526-
---
527-
528-
### Infrastructure as a Service (IaaS) <!-- .slide: data-transition="zoom" data-transition-speed="slow" -->
529-
530-
* Virtual machines <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
531-
* Storage <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
532-
* Networking <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
533-
* Operating systems <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
534-
535-
---
536-
537-
### Platform as a Service (PaaS) <!-- .slide: data-transition="zoom" data-transition-speed="slow" -->
538-
539-
* Development tools <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
540-
* Database management <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
541-
* Business analytics <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
542-
* Operating systems <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
543-
544-
---
545-
546-
### Software as a Service (SaaS) <!-- .slide: data-transition="zoom" data-transition-speed="slow" -->
547-
548-
* Email services <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
549-
* Office applications <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
550-
* Customer relationship management <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
551-
* Enterprise resource planning <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
552-
553-
---
554-
555-
### Serverless Computing <!-- .slide: data-transition="zoom" data-transition-speed="slow" -->
517+
### Shared Responsibility Model - SaaS (Customer) <!-- .slide: data-transition="zoom" data-transition-speed="slow" -->
556518

557-
* Event-driven <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
558-
* Pay-per-use <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
559-
* No server management <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
560-
* Automatic scaling <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
519+
* Data Security <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
520+
* Access Management <!-- .element: class="fragment custom blur highlight-current-blue fade-up" -->
561521

562522
---
563523

0 commit comments

Comments
 (0)