Skip to content

Releases: sapcc/limesctl

v3.0.2

30 Aug 10:12
Compare
Choose a tag to compare

Changed

  • Use Golang 1.19 in release workflow.
  • Updated all dependencies to their latest version

v3.0.0

03 Mar 18:58
Compare
Choose a tag to compare

Changed

  • Updated all dependencies to their latest version.

Removed

  • cluster list command; Limes has removed multi-cluster support.
  • --cluster flag for domain and project subcommands.

v2.0.1

06 Oct 15:00
Compare
Choose a tag to compare

Fixed

  • Convert given quota value to resource's base unit during relative quota change.

v2.0.0

28 Sep 20:43
Compare
Choose a tag to compare

Added

  • Support for showing project rate limits.

    limesctl project show-rates
    limesctl project list-rates
    
  • Support for specifying multiple area, service, resource values for the respective flags.

  • Support for resources without quota.

  • Support for relative quota adjustment. The following operators are supported: +=, -=, *=, /=.

    Example:

    limesctl project set -q compute/cores+=100
    

Changed

  • Switch to Kong for command-line parsing.

  • Domain ID is now optional when listing projects in current token scope.

  • human-readable flag has been renamed to humanize.

  • Use flag for quota values instead of positional arguments.

    Old style:

    limesctl project set compute/cores=250 compute/ram=20GiB
    

    New style option 1, use --quotas flag with comma-separated values:

    limesctl project set --quotas=compute/cores=250,compute/ram=20GiB
    

    New style option 2, use -q shorthand flag for each new quota value:

    limesctl project set -q compute/cores=250 -q compute/ram=20GiB
    

v1.6.2

12 Nov 10:39
Compare
Choose a tag to compare

Fixed

  • Show error if domain ID is used for project subcommands.

v1.6.1

01 Aug 17:34
Compare
Choose a tag to compare

Changed

  • Migrate from gophercloud-limes to gophercloud-sapcc.
  • Version flag now prints the Git commit hash and build date.

v1.6.0

18 Nov 13:06
Compare
Choose a tag to compare

New features:

  • The new --debug flag logs all HTTP requests and responses, for
    troubleshooting in deployments where mitmproxy is not available for some
    reason.

Bugfixes:

  • On Windows, handle UTF-8-encoded environment variables in the same way as
    python-openstackclient. See
    gophercloud/gophercloud#1572 for details.
  • Do not crash when unknown service/resource are used with set subcommand.

v1.5.3

20 Aug 05:46
2593406
Compare
Choose a tag to compare

Bugfixes:

  • Do not throw segmentation fault error for invalid service names while setting
    quota(s).

v1.5.2

17 Jul 13:05
Compare
Choose a tag to compare

Bugfixes:

  • A typo that resulted in a previous instance of error not being properly recycled.

v1.5.1

26 Jun 08:03
Compare
Choose a tag to compare

Changes:

  • Report non-existent physical_usage data as an empty string in the table and
    csv format.