- AWS CLI Configuration
- AWS Key Pair
cd terraform
terraform init
terraform plan
terraform apply
- Chart
## add repo
helm repo add devops https://loneexile.github.io/devops-demo-20250307
helm repo update
## example installation
helm install backend-demo devops/backend-demo
## example installation with custom values
helm install backend-demo devops/backend-demo -f custom-values.yaml
## remove installation
helm uninstall backend-demo
## remove repo
helm repo remove devops