Skip to content

Instantly share code, notes, and snippets.

@antigenius0910
Last active April 5, 2022 16:17
Show Gist options
  • Save antigenius0910/4094d89016c4ef70dd36e0709b702ed4 to your computer and use it in GitHub Desktop.
Save antigenius0910/4094d89016c4ef70dd36e0709b702ed4 to your computer and use it in GitHub Desktop.
this helm chart will take care of rbac, deployment and serviceaccount
resource "helm_release" "origin-ca-issuer" {
depends_on = [
kubernetes_namespace.origin-ca-issuer-system
]
name = "origin-ca-issuer"
namespace = data.kubernetes_namespace.origin-ca-issuer-system.metadata[0].name
chart = "./origin-ca-issuer/deploy/charts/origin-ca-issuer/."
version = "0.5.0"
create_namespace = false
values = [
"${file("./origin-ca-issuer/deploy/charts/origin-ca-issuer/values.yaml")}"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment