Update .gitlab-ci.yml, terraform.tf

This commit is contained in:
2022-09-25 13:36:23 +00:00
parent b6b688ea84
commit d84b6d2548
2 changed files with 10 additions and 3 deletions

View File

@@ -20,9 +20,6 @@ plan production:
apply:
extends: .apply
artifacts:
paths:
- $CI_PROJECT_DIR
destroy:
extends: .destroy

View File

@@ -28,3 +28,13 @@ resource "linode_lke_cluster" "foobar" {
}
}
}
provider "kubernetes" {
config_path = "./config"
}
resource "kubernetes_namespace" "argocd" {
metadata {
name = "argocd"
}
}