From 18f8d9ede4538bb8c96daf078f1bb35f748d0dc6 Mon Sep 17 00:00:00 2001 From: Vegard Hagen Date: Sun, 29 May 2022 09:41:48 +0000 Subject: [PATCH] feat(cni): Using Terraform to provide Cilium as a CNI using Helm --- main.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main.tf b/main.tf index 0048e3e..d22aab6 100644 --- a/main.tf +++ b/main.tf @@ -18,10 +18,10 @@ provider "helm" { } resource "helm_release" "cilium" { - name = "cilium-cni" + name = "cilium" - repository = "https://helm.cilium.io/" - chart = "cilium/cilium" + repository = "https://helm.cilium.io" + chart = "cilium" namespace = "kube-system" version = "1.11.5" @@ -78,4 +78,4 @@ resource "helm_release" "cilium" { # target_port = 80 # } # } -#} \ No newline at end of file +#}