Skip to content

Commit

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

* Auto generate

Co-authored-by: metal-stack <[email protected]>
  • Loading branch information
metal-robot[bot] and metal-stack authored Aug 18, 2022
1 parent a1433bb commit 95b6f20
Show file tree
Hide file tree
Showing 142 changed files with 2,102 additions and 1,048 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.10.3")
RELEASE_VERSION := $(or ${RELEASE_VERSION},"v0.10.4")

ifeq ($(CI),true)
DOCKER_TTY_ARG=
Expand Down
31 changes: 15 additions & 16 deletions docs/src/external/metalctl/docs/metalctl.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# metalctl

a cli to manage metal devices.
a cli to manage entities in the metal-stack api

## Options

```
--apitoken string api token to authenticate. Can be specified with METALCTL_APITOKEN environment variable.
--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:
Expand All @@ -17,9 +18,8 @@ a cli to manage metal devices.
--debug debug output
--force-color force colored output even without tty
-h, --help help for metalctl
--kubeconfig string Path to the kube-config to use for authentication and authorization. Is updated by login.
--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)
--order string order by (comma separated) column(s), possible values: size|id|status|event|when|partition|project
-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.
Expand All @@ -28,29 +28,28 @@ a cli to manage metal devices.
metalctl machine list -o template --template "{{ .id }}:{{ .size.id }}"
-u, --url string api server address. Can be specified with METALCTL_URL environment variable.
--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 completion](metalctl_completion.md) - generate the autocompletion script for the specified shell
* [metalctl completion](metalctl_completion.md) - Generate the autocompletion script for the specified shell
* [metalctl context](metalctl_context.md) - manage metalctl context
* [metalctl filesystemlayout](metalctl_filesystemlayout.md) - manage filesystemlayouts
* [metalctl firewall](metalctl_firewall.md) - manage firewalls
* [metalctl filesystemlayout](metalctl_filesystemlayout.md) - manage filesystemlayout entities
* [metalctl firewall](metalctl_firewall.md) - manage firewall entities
* [metalctl firmware](metalctl_firmware.md) - manage firmwares
* [metalctl health](metalctl_health.md) - shows the server health
* [metalctl image](metalctl_image.md) - manage images
* [metalctl image](metalctl_image.md) - manage image entities
* [metalctl login](metalctl_login.md) - login user and receive token
* [metalctl machine](metalctl_machine.md) - manage machines
* [metalctl logout](metalctl_logout.md) - logout user from OIDC SSO session
* [metalctl machine](metalctl_machine.md) - manage machine entities
* [metalctl markdown](metalctl_markdown.md) - create markdown documentation
* [metalctl network](metalctl_network.md) - manage networks
* [metalctl partition](metalctl_partition.md) - manage partitions
* [metalctl project](metalctl_project.md) - manage projects
* [metalctl size](metalctl_size.md) - manage sizes
* [metalctl switch](metalctl_switch.md) - manage switches
* [metalctl network](metalctl_network.md) - manage network entities
* [metalctl partition](metalctl_partition.md) - manage partition entities
* [metalctl project](metalctl_project.md) - manage project entities
* [metalctl size](metalctl_size.md) - manage size entities
* [metalctl switch](metalctl_switch.md) - manage switch entities
* [metalctl update](metalctl_update.md) - update the program
* [metalctl version](metalctl_version.md) - print the client and server version information
* [metalctl whoami](metalctl_whoami.md) - shows current user

##### Auto generated by spf13/cobra on 25-Aug-2021
21 changes: 9 additions & 12 deletions docs/src/external/metalctl/docs/metalctl_completion.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
# metalctl completion

generate the autocompletion script for the specified shell
Generate the autocompletion script for the specified shell

## Synopsis


Generate the autocompletion script for metalctl for the specified shell.
See each sub-command's help for details on how to use the generated script.

Expand All @@ -18,7 +17,8 @@ See each sub-command's help for details on how to use the generated script.
## Options inherited from parent commands

```
--apitoken string api token to authenticate. Can be specified with METALCTL_APITOKEN environment variable.
--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:
Expand All @@ -29,9 +29,8 @@ See each sub-command's help for details on how to use the generated script.
--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.
--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)
--order string order by (comma separated) column(s), possible values: size|id|status|event|when|partition|project
-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.
Expand All @@ -40,16 +39,14 @@ See each sub-command's help for details on how to use the generated script.
metalctl machine list -o template --template "{{ .id }}:{{ .size.id }}"
-u, --url string api server address. Can be specified with METALCTL_URL environment variable.
--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](metalctl.md) - a cli to manage metal devices.
* [metalctl completion bash](metalctl_completion_bash.md) - generate the autocompletion script for bash
* [metalctl completion fish](metalctl_completion_fish.md) - generate the autocompletion script for fish
* [metalctl completion powershell](metalctl_completion_powershell.md) - generate the autocompletion script for powershell
* [metalctl completion zsh](metalctl_completion_zsh.md) - generate the autocompletion script for zsh
* [metalctl](metalctl.md) - a cli to manage entities in the metal-stack api
* [metalctl completion bash](metalctl_completion_bash.md) - Generate the autocompletion script for bash
* [metalctl completion fish](metalctl_completion_fish.md) - Generate the autocompletion script for fish
* [metalctl completion powershell](metalctl_completion_powershell.md) - Generate the autocompletion script for powershell
* [metalctl completion zsh](metalctl_completion_zsh.md) - Generate the autocompletion script for zsh

##### Auto generated by spf13/cobra on 25-Aug-2021
30 changes: 16 additions & 14 deletions docs/src/external/metalctl/docs/metalctl_completion_bash.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,30 @@
# metalctl completion bash

generate the autocompletion script for bash
Generate the autocompletion script for bash

## Synopsis


Generate the autocompletion script for the bash shell.

This script depends on the 'bash-completion' package.
If it is not installed already, you can install it via your OS's package manager.

To load completions in your current shell session:
$ source <(metalctl completion bash)

source <(metalctl completion bash)

To load completions for every new session, execute once:
Linux:
$ metalctl completion bash > /etc/bash_completion.d/metalctl
MacOS:
$ metalctl completion bash > /usr/local/etc/bash_completion.d/metalctl

### Linux:

metalctl completion bash > /etc/bash_completion.d/metalctl

### macOS:

metalctl completion bash > $(brew --prefix)/etc/bash_completion.d/metalctl

You will need to start a new shell for this setup to take effect.


```
metalctl completion bash
Expand All @@ -36,7 +40,8 @@ metalctl completion bash
## Options inherited from parent commands

```
--apitoken string api token to authenticate. Can be specified with METALCTL_APITOKEN environment variable.
--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:
Expand All @@ -47,9 +52,8 @@ metalctl completion bash
--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.
--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)
--order string order by (comma separated) column(s), possible values: size|id|status|event|when|partition|project
-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.
Expand All @@ -58,12 +62,10 @@ metalctl completion bash
metalctl machine list -o template --template "{{ .id }}:{{ .size.id }}"
-u, --url string api server address. Can be specified with METALCTL_URL environment variable.
--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 completion](metalctl_completion.md) - generate the autocompletion script for the specified shell
* [metalctl completion](metalctl_completion.md) - Generate the autocompletion script for the specified shell

##### Auto generated by spf13/cobra on 25-Aug-2021
19 changes: 9 additions & 10 deletions docs/src/external/metalctl/docs/metalctl_completion_fish.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
# metalctl completion fish

generate the autocompletion script for fish
Generate the autocompletion script for fish

## Synopsis


Generate the autocompletion script for the fish shell.

To load completions in your current shell session:
$ metalctl completion fish | source

metalctl completion fish | source

To load completions for every new session, execute once:
$ metalctl completion fish > ~/.config/fish/completions/metalctl.fish

metalctl completion fish > ~/.config/fish/completions/metalctl.fish

You will need to start a new shell for this setup to take effect.

Expand All @@ -30,7 +31,8 @@ metalctl completion fish [flags]
## Options inherited from parent commands

```
--apitoken string api token to authenticate. Can be specified with METALCTL_APITOKEN environment variable.
--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:
Expand All @@ -41,9 +43,8 @@ metalctl completion fish [flags]
--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.
--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)
--order string order by (comma separated) column(s), possible values: size|id|status|event|when|partition|project
-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.
Expand All @@ -52,12 +53,10 @@ metalctl completion fish [flags]
metalctl machine list -o template --template "{{ .id }}:{{ .size.id }}"
-u, --url string api server address. Can be specified with METALCTL_URL environment variable.
--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 completion](metalctl_completion.md) - generate the autocompletion script for the specified shell
* [metalctl completion](metalctl_completion.md) - Generate the autocompletion script for the specified shell

##### Auto generated by spf13/cobra on 25-Aug-2021
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# metalctl completion powershell

generate the autocompletion script for powershell
Generate the autocompletion script for powershell

## Synopsis


Generate the autocompletion script for powershell.

To load completions in your current shell session:
PS C:\> metalctl completion powershell | Out-String | Invoke-Expression

metalctl completion powershell | Out-String | Invoke-Expression

To load completions for every new session, add the output of the above command
to your powershell profile.
Expand All @@ -28,7 +28,8 @@ metalctl completion powershell [flags]
## Options inherited from parent commands

```
--apitoken string api token to authenticate. Can be specified with METALCTL_APITOKEN environment variable.
--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:
Expand All @@ -39,9 +40,8 @@ metalctl completion powershell [flags]
--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.
--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)
--order string order by (comma separated) column(s), possible values: size|id|status|event|when|partition|project
-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.
Expand All @@ -50,12 +50,10 @@ metalctl completion powershell [flags]
metalctl machine list -o template --template "{{ .id }}:{{ .size.id }}"
-u, --url string api server address. Can be specified with METALCTL_URL environment variable.
--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 completion](metalctl_completion.md) - generate the autocompletion script for the specified shell
* [metalctl completion](metalctl_completion.md) - Generate the autocompletion script for the specified shell

##### Auto generated by spf13/cobra on 25-Aug-2021
Loading

0 comments on commit 95b6f20

Please sign in to comment.