Skip to content

Commit

Permalink
word
Browse files Browse the repository at this point in the history
  • Loading branch information
tanfarming committed Dec 12, 2023
1 parent 1b31fd6 commit eca4b91
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ita/internal/featureMan.go
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 2 additions & 0 deletions orch/internal/handlers/hc_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -540,13 +540,15 @@ 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{
"p0": 1,
"p1": 2,
"b0": 2,
"b1": 2,
"b2": 3,
}

if _, ok := map_tiers_retPodCnt[cfg.Tier]; !ok {
Expand Down

0 comments on commit eca4b91

Please sign in to comment.