Skip to content
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

Bump releases to version v0.14.0 #139

Merged
merged 2 commits into from
Jul 4, 2023
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: 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.13.8")
RELEASE_VERSION := $(or ${RELEASE_VERSION},"v0.14.0")

ifeq ($(CI),true)
DOCKER_TTY_ARG=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ to enable it. You can execute the following once:

To load completions in your current shell session:

source <(metalctl completion zsh); compdef _metalctl metalctl
source <(metalctl completion zsh)

To load completions for every new session, execute once:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,22 @@ metalctl filesystemlayout apply [flags]
## Options

```
-f, --file string filename of the create or update request in yaml format, or - for stdin.

Example:
$ metalctl filesystemlayout describe filesystemlayout-1 -o yaml > filesystemlayout.yaml
$ vi filesystemlayout.yaml
$ # either via stdin
$ cat filesystemlayout.yaml | metalctl filesystemlayout apply -f -
$ # or via file
$ metalctl filesystemlayout apply -f filesystemlayout.yaml

-h, --help help for apply
--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 filesystemlayout describe filesystemlayout-1 -o yaml > filesystemlayout.yaml
$ vi filesystemlayout.yaml
$ # either via stdin
$ cat filesystemlayout.yaml | metalctl filesystemlayout apply -f -
$ # or via file
$ metalctl filesystemlayout apply -f filesystemlayout.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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,22 @@ metalctl filesystemlayout create [flags]
## Options

```
-f, --file string filename of the create or update request in yaml format, or - for stdin.

Example:
$ metalctl filesystemlayout describe filesystemlayout-1 -o yaml > filesystemlayout.yaml
$ vi filesystemlayout.yaml
$ # either via stdin
$ cat filesystemlayout.yaml | metalctl filesystemlayout create -f -
$ # or via file
$ metalctl filesystemlayout create -f filesystemlayout.yaml

-h, --help help for create
--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 filesystemlayout describe filesystemlayout-1 -o yaml > filesystemlayout.yaml
$ vi filesystemlayout.yaml
$ # either via stdin
$ cat filesystemlayout.yaml | metalctl filesystemlayout create -f -
$ # or via file
$ metalctl filesystemlayout create -f filesystemlayout.yaml

the file can also contain multiple documents and perform a bulk operation.

-h, --help help for create
--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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,22 @@ metalctl filesystemlayout delete <id> [flags]
## Options

```
-h, --help help for delete
--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 filesystemlayout describe filesystemlayout-1 -o yaml > filesystemlayout.yaml
$ vi filesystemlayout.yaml
$ # either via stdin
$ cat filesystemlayout.yaml | metalctl filesystemlayout delete <id> -f -
$ # or via file
$ metalctl filesystemlayout delete <id> -f filesystemlayout.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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,22 @@ metalctl filesystemlayout update [flags]
## Options

```
-f, --file string filename of the create or update request in yaml format, or - for stdin.

Example:
$ metalctl filesystemlayout describe filesystemlayout-1 -o yaml > filesystemlayout.yaml
$ vi filesystemlayout.yaml
$ # either via stdin
$ cat filesystemlayout.yaml | metalctl filesystemlayout update -f -
$ # or via file
$ metalctl filesystemlayout update -f filesystemlayout.yaml

-h, --help help for update
--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 filesystemlayout describe filesystemlayout-1 -o yaml > filesystemlayout.yaml
$ vi filesystemlayout.yaml
$ # either via stdin
$ cat filesystemlayout.yaml | metalctl filesystemlayout update -f -
$ # or via file
$ metalctl filesystemlayout update -f filesystemlayout.yaml

the file can also contain multiple documents and perform a bulk operation.

-h, --help help for update
--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
Expand Down
5 changes: 5 additions & 0 deletions docs/src/external/metalctl/docs/metalctl_firewall_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ metalctl firewall create [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.
-d, --description string Description of the firewall to create. [optional]
-f, --file string filename of the create or update request in yaml format, or - for stdin.

Expand All @@ -19,6 +20,8 @@ metalctl firewall create [flags]
$ cat firewall.yaml | metalctl firewall create -f -
$ # or via file
$ metalctl firewall create -f firewall.yaml

the file can also contain multiple documents and perform a bulk operation.

--filesystemlayout string Filesystemlayout to use during machine installation. [optional]
-h, --help help for create
Expand All @@ -38,10 +41,12 @@ metalctl firewall create [flags]
-S, --partition string partition/datacenter where the firewall is created. [required, except for reserved machines]
-P, --project string Project where the firewall should belong to. [required]
-s, --size string Size of the firewall. [required, except for reserved machines]
--skip-security-prompts skips security prompt for bulk operations
-p, --sshpublickey string SSH public key for access via ssh and console. [optional]
Can be either the public key as string, or pointing to the public key file to use e.g.: "@~/.ssh/id_rsa.pub".
If ~/.ssh/[id_ed25519.pub | id_rsa.pub | id_dsa.pub] is present it will be picked as default, matching the first one in this order.
--tags strings tags to add to the firewall, use it like: --tags "tag1,tag2" or --tags "tag3".
--timestamps when used with --file (bulk operation): prints timestamps in-between the operations
--userdata string cloud-init.io compatible userdata. [optional]
Can be either the userdata as string, or pointing to the userdata file to use e.g.: "@/tmp/userdata.cfg".
```
Expand Down
27 changes: 16 additions & 11 deletions docs/src/external/metalctl/docs/metalctl_image_apply.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,22 @@ metalctl image apply [flags]
## Options

```
-f, --file string filename of the create or update request in yaml format, or - for stdin.

Example:
$ metalctl image describe image-1 -o yaml > image.yaml
$ vi image.yaml
$ # either via stdin
$ cat image.yaml | metalctl image apply -f -
$ # or via file
$ metalctl image apply -f image.yaml

-h, --help help for apply
--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 image describe image-1 -o yaml > image.yaml
$ vi image.yaml
$ # either via stdin
$ cat image.yaml | metalctl image apply -f -
$ # or via file
$ metalctl image apply -f image.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
Expand Down
37 changes: 21 additions & 16 deletions docs/src/external/metalctl/docs/metalctl_image_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,27 @@ metalctl image create [flags]
## Options

```
-d, --description string Description of the image.
--features strings features of the image, can be one of machine|firewall
-f, --file string filename of the create or update request in yaml format, or - for stdin.

Example:
$ metalctl image describe image-1 -o yaml > image.yaml
$ vi image.yaml
$ # either via stdin
$ cat image.yaml | metalctl image create -f -
$ # or via file
$ metalctl image create -f image.yaml

-h, --help help for create
--id string ID of the image.
-n, --name string Name of the image.
--url string url of the image.
--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.
-d, --description string Description of the image.
--features strings features of the image, can be one of machine|firewall
-f, --file string filename of the create or update request in yaml format, or - for stdin.

Example:
$ metalctl image describe image-1 -o yaml > image.yaml
$ vi image.yaml
$ # either via stdin
$ cat image.yaml | metalctl image create -f -
$ # or via file
$ metalctl image create -f image.yaml

the file can also contain multiple documents and perform a bulk operation.

-h, --help help for create
--id string ID of the image.
-n, --name string Name of the image.
--skip-security-prompts skips security prompt for bulk operations
--timestamps when used with --file (bulk operation): prints timestamps in-between the operations
--url string url of the image.
```

## Options inherited from parent commands
Expand Down
17 changes: 16 additions & 1 deletion docs/src/external/metalctl/docs/metalctl_image_delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,22 @@ metalctl image delete <id> [flags]
## Options

```
-h, --help help for delete
--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 image describe image-1 -o yaml > image.yaml
$ vi image.yaml
$ # either via stdin
$ cat image.yaml | metalctl image delete <id> -f -
$ # or via file
$ metalctl image delete <id> -f image.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
Expand Down
27 changes: 16 additions & 11 deletions docs/src/external/metalctl/docs/metalctl_image_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,22 @@ metalctl image update [flags]
## Options

```
-f, --file string filename of the create or update request in yaml format, or - for stdin.

Example:
$ metalctl image describe image-1 -o yaml > image.yaml
$ vi image.yaml
$ # either via stdin
$ cat image.yaml | metalctl image update -f -
$ # or via file
$ metalctl image update -f image.yaml

-h, --help help for update
--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 image describe image-1 -o yaml > image.yaml
$ vi image.yaml
$ # either via stdin
$ cat image.yaml | metalctl image update -f -
$ # or via file
$ metalctl image update -f image.yaml

the file can also contain multiple documents and perform a bulk operation.

-h, --help help for update
--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
Expand Down
27 changes: 16 additions & 11 deletions docs/src/external/metalctl/docs/metalctl_machine_apply.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,22 @@ metalctl machine apply [flags]
## Options

```
-f, --file string filename of the create or update request in yaml format, or - for stdin.

Example:
$ metalctl machine describe machine-1 -o yaml > machine.yaml
$ vi machine.yaml
$ # either via stdin
$ cat machine.yaml | metalctl machine apply -f -
$ # or via file
$ metalctl machine apply -f machine.yaml

-h, --help help for apply
--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 machine describe machine-1 -o yaml > machine.yaml
$ vi machine.yaml
$ # either via stdin
$ cat machine.yaml | metalctl machine apply -f -
$ # or via file
$ metalctl machine apply -f machine.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
Expand Down
Loading