From d3f95d33ce55e1e9ee1d1eb80d9c9d654855ad6e Mon Sep 17 00:00:00 2001 From: mmurdoch Date: Thu, 19 Aug 2021 16:39:37 +0100 Subject: [PATCH] Fix Azure Terraform installation. Helm chart for Feast in the Terraform installation changed to point to the location referenced in the Azure Helm installation documentation (https://docs.feast.dev/feast-on-kubernetes-1/getting-started/install-feast/kubernetes-azure-aks-with-helm) Fixes issue 1792 Signed-off-by: Matthew Murdoch --- infra/terraform/azure/helm.tf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/infra/terraform/azure/helm.tf b/infra/terraform/azure/helm.tf index c1f85a3699..b37b3826e1 100644 --- a/infra/terraform/azure/helm.tf +++ b/infra/terraform/azure/helm.tf @@ -82,7 +82,8 @@ resource "helm_release" "feast" { name = var.name_prefix namespace = var.aks_namespace - chart = "../../charts/feast" + repository = "https://feast-helm-charts.storage.googleapis.com" + chart = "feast" values = [ yamlencode(local.feast_helm_values)