Skip to content

Commit 3986c83

Browse files
committed
changes
1 parent ded69af commit 3986c83

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

2-Terraform-AZURE-Services-Creation/4-aks/aks.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ resource "azurerm_kubernetes_cluster" "k8s" {
2727
orchestrator_version = var.kubernetes_version
2828
auto_scaling_enabled = true
2929
min_count = 1
30-
max_count = 5
31-
max_pods = 110
30+
max_count = 3
31+
max_pods = 30
3232
os_disk_size_gb = 30
3333
zones = ["1", "2", "3"]
3434
}

4-kubernetes_manifest/scripts/1-alb-controller-install-k8s.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ AKS_NAME="devopsthehardwayaks"
55
helm_resource_namespace="azure-alb-system"
66
VNET_NAME="devopsthehardway-vnet"
77
ALB_SUBNET_NAME="appgw"
8-
ALB_CONTROLLER_VERSION="1.1.2"
8+
ALB_CONTROLLER_VERSION="1.7.9"
99

1010
#create namespace
1111
kubectl create namespace $helm_resource_namespace

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ All notable changes to this project will be documented in this file.
1919
- **Python base image**: Updated from 3.12-slim to 3.13-slim
2020
- **Flask**: Updated from 2.3.3 to 3.0.3
2121
- **Werkzeug**: Updated from 2.3.8 to 3.0.4
22-
- **ALB Controller**: Updated from 1.0.0 to 1.1.2
22+
- **ALB Controller**: Updated from 1.0.0 to 1.7.9
2323
- **tfsec GitHub Action**: Updated from v1.2.0 to v1.3.0
2424
- **terraform-docs GitHub Action**: Updated from @main to v1.3.0
2525
- **Checkov**: Pinned to specific version 3.2.4 for consistency

UPDATE_SUMMARY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ This document summarizes all the major updates made to the DevOps The Hard Way A
2727
- **DNS Configuration**: Added proper DNS service IP and service CIDR
2828

2929
### 🔧 Tool Updates
30-
- **ALB Controller**: Updated from 1.0.0 to 1.1.2
30+
- **ALB Controller**: Updated from 1.0.0 to 1.7.9
3131
- **tfsec**: Updated GitHub Action from v1.2.0 to v1.3.0
3232
- **terraform-docs**: Updated from @main to v1.3.0
3333
- **Checkov**: Pinned to version 3.2.4
@@ -94,7 +94,7 @@ This document summarizes all the major updates made to the DevOps The Hard Way A
9494

9595
### CI/CD & Automation
9696
- `.github/workflows/main.yml` - Updated GitHub Actions
97-
- `4-kubernetes_manifest/scripts/1-alb-controller-install-k8s.sh` - ALB Controller 1.1.2
97+
- `4-kubernetes_manifest/scripts/1-alb-controller-install-k8s.sh` - ALB Controller 1.7.9
9898

9999
### Documentation
100100
- `README.md` - Enhanced with version information

0 commit comments

Comments
 (0)