Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use nearest zero-based pool name for expansion #48

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions kubectl-minio/cmd/resources/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import (
"io/fs"
"log"
"path"
"slices"
"strings"

"sigs.k8s.io/kustomize/kyaml/filesys"
Expand Down Expand Up @@ -94,7 +95,7 @@ func Pool(opts *TenantOptions, volumes int32, q resource.Quantity) miniov2.Pool
{
Key: miniov2.PoolLabel,
Operator: "In",
Values: []string{opts.Name},
Values: []string{opts.PoolName},
},
},
},
Expand All @@ -108,8 +109,19 @@ func Pool(opts *TenantOptions, volumes int32, q resource.Quantity) miniov2.Pool
}

// GeneratePoolName Pool Name Generator
func GeneratePoolName(poolNumber int) string {
return fmt.Sprintf("pool-%d", poolNumber)
func GeneratePoolName(pools []miniov2.Pool) string {
poolCounter := 0
var poolNames []string
for _, pool := range pools {
poolNames = append(poolNames, pool.Name)
}
for poolCounter < len(poolNames) {
if !(slices.Contains(poolNames, fmt.Sprintf("pool-%d", poolCounter))) {
return fmt.Sprintf("pool-%d", poolCounter)
}
poolCounter++
}
return fmt.Sprintf("pool-%d", poolCounter)
}

// GetSchemeDecoder returns a decoder for the scheme's that we use
Expand Down
4 changes: 2 additions & 2 deletions kubectl-minio/cmd/tenant-expand.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,9 @@ func (v *expandCmd) run() error {
return err
}

// Tenant pool id is zero based, generating pool using the count of existing pools in the tenant
// Generate pool name using the state of existing pools in the tenant
if v.tenantOpts.PoolName == "" {
v.tenantOpts.PoolName = resources.GeneratePoolName(len(t.Spec.Pools))
v.tenantOpts.PoolName = resources.GeneratePoolName(t.Spec.Pools)
}

t.Spec.Pools = append(t.Spec.Pools, resources.Pool(&v.tenantOpts, v.tenantOpts.VolumesPerServer, *capacityPerVolume))
Expand Down
8 changes: 7 additions & 1 deletion web-app/src/common/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,13 @@ export const erasureCodeCalc = (

// Pool Name Generator
export const generatePoolName = (pools: Pool[]) => {
const poolCounter = pools.length;
let poolCounter = 0;
const poolNames = pools.map((pool) => pool.name || "");
for (; poolCounter < pools.length; poolCounter++) {
if (!poolNames.includes(`pool-${poolCounter}`)) {
return `pool-${poolCounter}`;
}
}
return `pool-${poolCounter}`;
};

Expand Down