Skip to content

Commit

Permalink
Bump releases to version v0.18.15 (#216)
Browse files Browse the repository at this point in the history
* Bump releases to version v0.18.15

* Auto generate

---------

Co-authored-by: metal-stack <[email protected]>
  • Loading branch information
metal-robot[bot] and metal-stack authored Oct 9, 2024
1 parent 3924f44 commit 83dee98
Show file tree
Hide file tree
Showing 14 changed files with 426 additions and 22 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.DEFAULT_GOAL := build
RELEASE_VERSION := $(or ${RELEASE_VERSION},"v0.18.14")
RELEASE_VERSION := $(or ${RELEASE_VERSION},"v0.18.15")

ifeq ($(CI),true)
DOCKER_TTY_ARG=
Expand Down
2 changes: 1 addition & 1 deletion docs/src/external/csi-driver-lvm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ For the special case of block volumes, the filesystem-expansion has to be perfor
You have to set the devicePattern for your hardware to specify which disks should be used to create the volume group.

```bash
helm install --repo https://helm.metal-stack.io mytest helm/csi-driver-lvm --set lvm.devicePattern='/dev/nvme[0-9]n[0-9]'
helm install --repo https://helm.metal-stack.io mytest csi-driver-lvm --set lvm.devicePattern='/dev/nvme[0-9]n[0-9]'
```

Now you can use one of following storageClasses:
Expand Down
6 changes: 3 additions & 3 deletions docs/src/external/metalctl/docs/metalctl_machine_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
updates the machine

```
metalctl machine update [flags]
metalctl machine update <id> [flags]
```

## Options
Expand All @@ -18,9 +18,9 @@ metalctl machine update [flags]
$ metalctl machine describe machine-1 -o yaml > machine.yaml
$ vi machine.yaml
$ # either via stdin
$ cat machine.yaml | metalctl machine update -f -
$ cat machine.yaml | metalctl machine update <id> -f -
$ # or via file
$ metalctl machine update -f machine.yaml
$ metalctl machine update <id> -f machine.yaml
the file can also contain multiple documents and perform a bulk operation.
Expand Down
6 changes: 3 additions & 3 deletions docs/src/external/metalctl/docs/metalctl_network_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
updates the network

```
metalctl network update [flags]
metalctl network update <id> [flags]
```

## Options
Expand All @@ -20,9 +20,9 @@ metalctl network update [flags]
$ metalctl network describe network-1 -o yaml > network.yaml
$ vi network.yaml
$ # either via stdin
$ cat network.yaml | metalctl network update -f -
$ cat network.yaml | metalctl network update <id> -f -
$ # or via file
$ metalctl network update -f network.yaml
$ metalctl network update <id> -f network.yaml
the file can also contain multiple documents and perform a bulk operation.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/external/metalctl/docs/metalctl_size.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ a size matches a machine in terms of cpu cores, ram and storage.
* [metalctl size edit](metalctl_size_edit.md) - edit the size through an editor and update
* [metalctl size imageconstraint](metalctl_size_imageconstraint.md) - manage imageconstraint entities
* [metalctl size list](metalctl_size_list.md) - list all sizes
* [metalctl size reservations](metalctl_size_reservations.md) - manage size reservations
* [metalctl size reservation](metalctl_size_reservation.md) - manage reservation entities
* [metalctl size suggest](metalctl_size_suggest.md) - suggest size from a given machine id
* [metalctl size update](metalctl_size_update.md) - updates the size

54 changes: 54 additions & 0 deletions docs/src/external/metalctl/docs/metalctl_size_reservation.md
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 docs/src/external/metalctl/docs/metalctl_size_reservation_apply.md
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

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

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

Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# metalctl size reservations
# metalctl size reservation describe

manage size reservations
describes the reservation

```
metalctl size reservations [flags]
metalctl size reservation describe <id> [flags]
```

## Options

```
-h, --help help for reservations
-h, --help help for describe
```

## Options inherited from parent commands
Expand Down Expand Up @@ -42,6 +42,5 @@ metalctl size reservations [flags]

## SEE ALSO

* [metalctl size](metalctl_size.md) - manage size entities
* [metalctl size reservations list](metalctl_size_reservations_list.md) - list size reservations
* [metalctl size reservation](metalctl_size_reservation.md) - manage reservation entities

46 changes: 46 additions & 0 deletions docs/src/external/metalctl/docs/metalctl_size_reservation_edit.md
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

Loading

0 comments on commit 83dee98

Please sign in to comment.