Skip to content

feat(instance): add max_file_systems to server-type list #4818

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

Merged
merged 3 commits into from
Jun 13, 2025
Merged
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
2 changes: 2 additions & 0 deletions internal/namespaces/instance/v1/custom_server_type.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ type customServerType struct {
RAM scw.Size `json:"ram"`
Arch instance.Arch `json:"arch"`
Availability instance.ServerTypesAvailability `json:"availability"`
MaxFileSystems uint32 `json:"max_file_systems"`
}

// serverTypeListBuilder transforms the server map into a list to display a
Expand Down Expand Up @@ -122,6 +123,7 @@ func serverTypeListBuilder(c *core.Command) *core.Command {
RAM: scw.Size(serverType.RAM),
Arch: serverType.Arch,
Availability: serverTypeAvailability,
MaxFileSystems: serverType.Capabilities.MaxFileSystems,
})
}

Expand Down
Loading
Loading