Skip to content

LoneExile/devops-demo-20250307

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

devops-demo-20250307

1. IaC

1.1. Terraform

1.2. Requirements

1.3. Setup

cd terraform
terraform init
terraform plan
terraform apply
  1. 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