Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 669 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 669 Bytes

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