Skip to content

Commit ed4cb0e

Browse files
committed
Thank You for Choosing to Learn from in28Minutes
1 parent f64b797 commit ed4cb0e

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

projects/microservices/01-currency-exchange-microservice-basic/configuration/iaac/aws/kubernetes/main.tf

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ module "in28minutes-cluster" {
5353
{
5454
instance_type = "t2.micro"
5555
max_capacity = 5
56-
desired_capacity = 2
57-
min_capacity = 2
56+
desired_capacity = 3
57+
min_capacity = 3
5858
}
5959
]
6060
}
@@ -76,4 +76,9 @@ resource "kubernetes_cluster_role_binding" "example" {
7676
name = "default"
7777
namespace = "default"
7878
}
79+
}
80+
81+
# Needed to set the default region
82+
provider "aws" {
83+
region = "us-east-1"
7984
}

projects/microservices/01-currency-exchange-microservice-basic/configuration/kubernetes/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ spec:
2323
spec:
2424
containers:
2525
- name: currency-exchange
26-
image: rangakaranam/currency-exchange-azure
26+
image: in28min/currency-exchange-devops
2727
imagePullPolicy: IfNotPresent
2828
ports:
2929
- name: liveness-port

readme.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ ChildNode4[label=<Server 3>];
5555
- Azure DevOps - Azure Account, Docker Basics, CI, CD, IDE
5656
- Azure K8S Automation - Kubernetes, Terraform (Remote Backend), IAAC, Azure DevOps, Azure, Azure CLI, FREE TIER??
5757
- AWS K8S Automation - Kubernetes, Terraform, Azure DevOps, AWS, AWS CLI, Costs - EKS is NOT FREE
58+
- Jenkins - IDE, Docker & Docker Compose
5859
- Miscellaneous
5960
- Docker
6061
- Importing Docker Projects into Visual Studio Code
@@ -65,6 +66,10 @@ ChildNode4[label=<Server 3>];
6566
- Advantages of immutability
6667
- Azure DevOps
6768
- Consequences of Setting up One Github Repository - Pipelines. A discussion on Best Practices
69+
- Jenkins
70+
- Deploying Jenkins on Kubernetes
71+
- Any other exercises?
72+
- Course Intro's and Ending!
6873
- Course Section Titles
6974
- Installing Visual Studio Code
7075
- Installing

0 commit comments

Comments
 (0)