diff --git a/ita/internal/featureMan.go b/ita/internal/featureMan.go index f538e46a..2648d2b7 100644 --- a/ita/internal/featureMan.go +++ b/ita/internal/featureMan.go @@ -53,7 +53,7 @@ func (fm *featureMan) determineFeatures() { fm._features.updater = true } - if slices.Contains([]string{"pro", "business", "b0", "b1"}, cfg.Tier) { + if slices.Contains([]string{"pro", "business", "b0", "b1", "b2"}, cfg.Tier) { fm._features.customDomain = true fm._features.customClient = true diff --git a/orch/internal/handlers/hc_utils.go b/orch/internal/handlers/hc_utils.go index 16505614..fab0a8e1 100644 --- a/orch/internal/handlers/hc_utils.go +++ b/orch/internal/handlers/hc_utils.go @@ -540,6 +540,7 @@ func hc_updateTier(cfg HCcfg) error { "p1": {"250m", "250Mi", "500m", "500Mi"}, "b0": {"750m", "750Mi", "1500m", "1500Mi"}, "b1": {"2500m", "2500Mi", "3500m", "3500Mi"}, + "b2": {"5000m", "5000Mi", "7000m", "7000Mi"}, } // pod counts map_tiers_retPodCnt := map[string]int{ @@ -547,6 +548,7 @@ func hc_updateTier(cfg HCcfg) error { "p1": 2, "b0": 2, "b1": 2, + "b2": 3, } if _, ok := map_tiers_retPodCnt[cfg.Tier]; !ok {