Skip to content

ohkillsh/killsh-devops

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

killsh-devops

Ohkillsh DevOps Infrastructure projet

Configure kubectl

export KUBECONFIG=${PWD}/kubeconfig

az aks install-cli

kubectl get nodes 

Create app test to run in K8s

\b

resource "helm_release" "nginx" {
  name       = "nginx"
  repository = "https://charts.bitnami.com/bitnami/"
  chart      = "nginx"
  version    = "15.0.2"

  namespace        = "dev"
  force_update     = true
  create_namespace = true

  depends_on = [module.aks]

  provider = helm.test
}

TODO'S

TODO 1: To create manualy the secret and then map to the key vault to use on the AKS creation (SECURE) TODO 2: Make it run in pipeline without break

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published