From 604d9d1fc2178ec147158f13b3b8f62f930226a5 Mon Sep 17 00:00:00 2001 From: Vlad Klokun Date: Fri, 27 Sep 2024 11:11:15 +0300 Subject: [PATCH] feat: add the `castai-pod-pinner-ext` subchart improvement (#92) * feat: add the `castai-pod-pinner-ext` subchart improvement Upstream separated some RBAC resources for better control. This commit incorporates these improvements. --- main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.tf b/main.tf index 72aafaf..0f32b04 100644 --- a/main.tf +++ b/main.tf @@ -471,7 +471,7 @@ resource "helm_release" "castai_pod_pinner" { depends_on = [helm_release.castai_agent] lifecycle { - ignore_changes = [set, version] + ignore_changes = [version] } } @@ -865,5 +865,5 @@ resource "castai_autoscaler" "castai_autoscaler_policies" { } } - depends_on = [helm_release.castai_agent, helm_release.castai_evictor] + depends_on = [helm_release.castai_agent, helm_release.castai_evictor, helm_release.castai_pod_pinner] }