-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump releases to version v0.18.15 (#216)
* Bump releases to version v0.18.15 * Auto generate --------- Co-authored-by: metal-stack <[email protected]>
- Loading branch information
1 parent
3924f44
commit 83dee98
Showing
14 changed files
with
426 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 54 additions & 0 deletions
54
docs/src/external/metalctl/docs/metalctl_size_reservation.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# metalctl size reservation | ||
|
||
manage reservation entities | ||
|
||
## Synopsis | ||
|
||
manage size reservations | ||
|
||
## Options | ||
|
||
``` | ||
-h, --help help for reservation | ||
``` | ||
|
||
## Options inherited from parent commands | ||
|
||
``` | ||
--api-token string api token to authenticate. Can be specified with METALCTL_API_TOKEN environment variable. | ||
--api-url string api server address. Can be specified with METALCTL_API_URL environment variable. | ||
-c, --config string alternative config file path, (default is ~/.metalctl/config.yaml). | ||
Example config.yaml: | ||
--- | ||
apitoken: "alongtoken" | ||
... | ||
--debug debug output | ||
--force-color force colored output even without tty | ||
--kubeconfig string Path to the kube-config to use for authentication and authorization. Is updated by login. Uses default path if not specified. | ||
--no-headers do not print headers of table output format (default print headers) | ||
-o, --output-format string output format (table|wide|markdown|json|yaml|template), wide is a table with more columns. (default "table") | ||
--template string output template for template output-format, go template format. | ||
For property names inspect the output of -o json or -o yaml for reference. | ||
Example for machines: | ||
metalctl machine list -o template --template "{{ .id }}:{{ .size.id }}" | ||
--yes-i-really-mean-it skips security prompts (which can be dangerous to set blindly because actions can lead to data loss or additional costs) | ||
``` | ||
|
||
## SEE ALSO | ||
|
||
* [metalctl size](metalctl_size.md) - manage size entities | ||
* [metalctl size reservation apply](metalctl_size_reservation_apply.md) - applies one or more reservations from a given file | ||
* [metalctl size reservation create](metalctl_size_reservation_create.md) - creates the reservation | ||
* [metalctl size reservation delete](metalctl_size_reservation_delete.md) - deletes the reservation | ||
* [metalctl size reservation describe](metalctl_size_reservation_describe.md) - describes the reservation | ||
* [metalctl size reservation edit](metalctl_size_reservation_edit.md) - edit the reservation through an editor and update | ||
* [metalctl size reservation list](metalctl_size_reservation_list.md) - list all reservations | ||
* [metalctl size reservation update](metalctl_size_reservation_update.md) - updates the reservation | ||
* [metalctl size reservation usage](metalctl_size_reservation_usage.md) - see current usage of size reservations | ||
|
61 changes: 61 additions & 0 deletions
61
docs/src/external/metalctl/docs/metalctl_size_reservation_apply.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# metalctl size reservation apply | ||
|
||
applies one or more reservations from a given file | ||
|
||
``` | ||
metalctl size reservation apply [flags] | ||
``` | ||
|
||
## Options | ||
|
||
``` | ||
--bulk-output when used with --file (bulk operation): prints results at the end as a list. default is printing results intermediately during the operation, which causes single entities to be printed in a row. | ||
-f, --file string filename of the create or update request in yaml format, or - for stdin. | ||
Example: | ||
$ metalctl reservation describe reservation-1 -o yaml > reservation.yaml | ||
$ vi reservation.yaml | ||
$ # either via stdin | ||
$ cat reservation.yaml | metalctl reservation apply -f - | ||
$ # or via file | ||
$ metalctl reservation apply -f reservation.yaml | ||
the file can also contain multiple documents and perform a bulk operation. | ||
-h, --help help for apply | ||
--skip-security-prompts skips security prompt for bulk operations | ||
--timestamps when used with --file (bulk operation): prints timestamps in-between the operations | ||
``` | ||
|
||
## Options inherited from parent commands | ||
|
||
``` | ||
--api-token string api token to authenticate. Can be specified with METALCTL_API_TOKEN environment variable. | ||
--api-url string api server address. Can be specified with METALCTL_API_URL environment variable. | ||
-c, --config string alternative config file path, (default is ~/.metalctl/config.yaml). | ||
Example config.yaml: | ||
--- | ||
apitoken: "alongtoken" | ||
... | ||
--debug debug output | ||
--force-color force colored output even without tty | ||
--kubeconfig string Path to the kube-config to use for authentication and authorization. Is updated by login. Uses default path if not specified. | ||
--no-headers do not print headers of table output format (default print headers) | ||
-o, --output-format string output format (table|wide|markdown|json|yaml|template), wide is a table with more columns. (default "table") | ||
--template string output template for template output-format, go template format. | ||
For property names inspect the output of -o json or -o yaml for reference. | ||
Example for machines: | ||
metalctl machine list -o template --template "{{ .id }}:{{ .size.id }}" | ||
--yes-i-really-mean-it skips security prompts (which can be dangerous to set blindly because actions can lead to data loss or additional costs) | ||
``` | ||
|
||
## SEE ALSO | ||
|
||
* [metalctl size reservation](metalctl_size_reservation.md) - manage reservation entities | ||
|
68 changes: 68 additions & 0 deletions
68
docs/src/external/metalctl/docs/metalctl_size_reservation_create.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# metalctl size reservation create | ||
|
||
creates the reservation | ||
|
||
``` | ||
metalctl size reservation create [flags] | ||
``` | ||
|
||
## Options | ||
|
||
``` | ||
--amount int32 the amount to associate with this reservation | ||
--bulk-output when used with --file (bulk operation): prints results at the end as a list. default is printing results intermediately during the operation, which causes single entities to be printed in a row. | ||
--description string the description to associate with this reservation | ||
-f, --file string filename of the create or update request in yaml format, or - for stdin. | ||
Example: | ||
$ metalctl reservation describe reservation-1 -o yaml > reservation.yaml | ||
$ vi reservation.yaml | ||
$ # either via stdin | ||
$ cat reservation.yaml | metalctl reservation create -f - | ||
$ # or via file | ||
$ metalctl reservation create -f reservation.yaml | ||
the file can also contain multiple documents and perform a bulk operation. | ||
-h, --help help for create | ||
--id string the id to associate with this reservation | ||
--labels strings the labels to associate with this reservation | ||
--partitions strings the partition ids to associate with this reservation | ||
--project string the project id to associate with this reservation | ||
--size string the size id to associate with this reservation | ||
--skip-security-prompts skips security prompt for bulk operations | ||
--timestamps when used with --file (bulk operation): prints timestamps in-between the operations | ||
``` | ||
|
||
## Options inherited from parent commands | ||
|
||
``` | ||
--api-token string api token to authenticate. Can be specified with METALCTL_API_TOKEN environment variable. | ||
--api-url string api server address. Can be specified with METALCTL_API_URL environment variable. | ||
-c, --config string alternative config file path, (default is ~/.metalctl/config.yaml). | ||
Example config.yaml: | ||
--- | ||
apitoken: "alongtoken" | ||
... | ||
--debug debug output | ||
--force-color force colored output even without tty | ||
--kubeconfig string Path to the kube-config to use for authentication and authorization. Is updated by login. Uses default path if not specified. | ||
--no-headers do not print headers of table output format (default print headers) | ||
-o, --output-format string output format (table|wide|markdown|json|yaml|template), wide is a table with more columns. (default "table") | ||
--template string output template for template output-format, go template format. | ||
For property names inspect the output of -o json or -o yaml for reference. | ||
Example for machines: | ||
metalctl machine list -o template --template "{{ .id }}:{{ .size.id }}" | ||
--yes-i-really-mean-it skips security prompts (which can be dangerous to set blindly because actions can lead to data loss or additional costs) | ||
``` | ||
|
||
## SEE ALSO | ||
|
||
* [metalctl size reservation](metalctl_size_reservation.md) - manage reservation entities | ||
|
61 changes: 61 additions & 0 deletions
61
docs/src/external/metalctl/docs/metalctl_size_reservation_delete.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# metalctl size reservation delete | ||
|
||
deletes the reservation | ||
|
||
``` | ||
metalctl size reservation delete <id> [flags] | ||
``` | ||
|
||
## Options | ||
|
||
``` | ||
--bulk-output when used with --file (bulk operation): prints results at the end as a list. default is printing results intermediately during the operation, which causes single entities to be printed in a row. | ||
-f, --file string filename of the create or update request in yaml format, or - for stdin. | ||
Example: | ||
$ metalctl reservation describe reservation-1 -o yaml > reservation.yaml | ||
$ vi reservation.yaml | ||
$ # either via stdin | ||
$ cat reservation.yaml | metalctl reservation delete <id> -f - | ||
$ # or via file | ||
$ metalctl reservation delete <id> -f reservation.yaml | ||
the file can also contain multiple documents and perform a bulk operation. | ||
-h, --help help for delete | ||
--skip-security-prompts skips security prompt for bulk operations | ||
--timestamps when used with --file (bulk operation): prints timestamps in-between the operations | ||
``` | ||
|
||
## Options inherited from parent commands | ||
|
||
``` | ||
--api-token string api token to authenticate. Can be specified with METALCTL_API_TOKEN environment variable. | ||
--api-url string api server address. Can be specified with METALCTL_API_URL environment variable. | ||
-c, --config string alternative config file path, (default is ~/.metalctl/config.yaml). | ||
Example config.yaml: | ||
--- | ||
apitoken: "alongtoken" | ||
... | ||
--debug debug output | ||
--force-color force colored output even without tty | ||
--kubeconfig string Path to the kube-config to use for authentication and authorization. Is updated by login. Uses default path if not specified. | ||
--no-headers do not print headers of table output format (default print headers) | ||
-o, --output-format string output format (table|wide|markdown|json|yaml|template), wide is a table with more columns. (default "table") | ||
--template string output template for template output-format, go template format. | ||
For property names inspect the output of -o json or -o yaml for reference. | ||
Example for machines: | ||
metalctl machine list -o template --template "{{ .id }}:{{ .size.id }}" | ||
--yes-i-really-mean-it skips security prompts (which can be dangerous to set blindly because actions can lead to data loss or additional costs) | ||
``` | ||
|
||
## SEE ALSO | ||
|
||
* [metalctl size reservation](metalctl_size_reservation.md) - manage reservation entities | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
docs/src/external/metalctl/docs/metalctl_size_reservation_edit.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# metalctl size reservation edit | ||
|
||
edit the reservation through an editor and update | ||
|
||
``` | ||
metalctl size reservation edit <id> [flags] | ||
``` | ||
|
||
## Options | ||
|
||
``` | ||
-h, --help help for edit | ||
``` | ||
|
||
## Options inherited from parent commands | ||
|
||
``` | ||
--api-token string api token to authenticate. Can be specified with METALCTL_API_TOKEN environment variable. | ||
--api-url string api server address. Can be specified with METALCTL_API_URL environment variable. | ||
-c, --config string alternative config file path, (default is ~/.metalctl/config.yaml). | ||
Example config.yaml: | ||
--- | ||
apitoken: "alongtoken" | ||
... | ||
--debug debug output | ||
--force-color force colored output even without tty | ||
--kubeconfig string Path to the kube-config to use for authentication and authorization. Is updated by login. Uses default path if not specified. | ||
--no-headers do not print headers of table output format (default print headers) | ||
-o, --output-format string output format (table|wide|markdown|json|yaml|template), wide is a table with more columns. (default "table") | ||
--template string output template for template output-format, go template format. | ||
For property names inspect the output of -o json or -o yaml for reference. | ||
Example for machines: | ||
metalctl machine list -o template --template "{{ .id }}:{{ .size.id }}" | ||
--yes-i-really-mean-it skips security prompts (which can be dangerous to set blindly because actions can lead to data loss or additional costs) | ||
``` | ||
|
||
## SEE ALSO | ||
|
||
* [metalctl size reservation](metalctl_size_reservation.md) - manage reservation entities | ||
|
Oops, something went wrong.