this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(infra): bootstrap platform apps

Khue Doan 2d9c2009 eb585903

+25
+25
infra/modules/bootstrap/platform.tf
··· 1 + resource "kubectl_manifest" "platform" { 2 + server_side_apply = true 3 + yaml_body = yamlencode({ 4 + apiVersion = "argoproj.io/v1alpha1" 5 + kind = "Application" 6 + metadata = { 7 + name = "platform" 8 + namespace = helm_release.argocd.namespace 9 + finalizers = ["resources-finalizer.argocd.argoproj.io"] 10 + } 11 + spec = { 12 + project = "default" # TODO separate project 13 + destination = { 14 + name = "in-cluster" 15 + namespace = helm_release.argocd.namespace 16 + } 17 + syncPolicy = local.sync_policy 18 + source = { 19 + repoURL = "oci://registry.127.0.0.1.sslip.io/platform" # TODO use registry var 20 + targetRevision = var.cluster 21 + path = "." 22 + } 23 + } 24 + }) 25 + }