init: copy from lawndale-infra

This commit is contained in:
2022-05-26 01:29:23 +02:00
commit 478b173c7b
11 changed files with 343 additions and 0 deletions

12
namespace.tf Normal file
View File

@@ -0,0 +1,12 @@
resource "kubernetes_namespace" "server" {
metadata {
name = "drone"
}
}
resource "kubernetes_namespace" "jobs" {
metadata {
name = "drone-jobs"
}
}