Skip to content

Commit c1a489c

Browse files
authored
Merge branch 'main' into feature/onboard-logs-service
2 parents 1cab0dd + e2123e2 commit c1a489c

File tree

296 files changed

+11390
-1410
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

296 files changed

+11390
-1410
lines changed

.github/workflows/renovate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Checkout
1414
uses: actions/checkout@v6
1515
- name: Self-hosted Renovate
16-
uses: renovatebot/github-action@v44.2.3
16+
uses: renovatebot/github-action@v44.2.4
1717
with:
1818
configurationFile: .github/renovate.json
1919
token: ${{ secrets.RENOVATE_TOKEN }}

.goreleaser.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,16 @@ builds:
5353
- cmd: sh -c 'go run main.go completion bash > ./dist/completions/stackit.bash'
5454
- cmd: sh -c 'go run main.go completion fish > ./dist/completions/stackit.fish'
5555

56+
- id: freebsd-builds
57+
env:
58+
- CGO_ENABLED=0
59+
goos:
60+
- freebsd
61+
goarch:
62+
- arm64
63+
- amd64
64+
binary: "stackit"
65+
5666
archives:
5767
- id: windows-archives
5868
ids:
@@ -61,6 +71,7 @@ archives:
6171
- ids:
6272
- linux-builds
6373
- macos-builds
74+
- freebsd-builds
6475
formats: [ 'tar.gz' ]
6576
files:
6677
- src: ./dist/completions/*

INSTALLATION.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,24 @@ You can also get the STACKIT CLI by compiling it from source or downloading a pr
215215
go run . <GROUP> <SUB-GROUP> <COMMAND> <ARGUMENT> <FLAGS>
216216
```
217217

218+
### FreeBSD
219+
220+
The STACKIT CLI can be installed through the [FreeBSD ports or packages](https://docs.freebsd.org/en/books/handbook/ports/).
221+
222+
To install the port:
223+
224+
```shell
225+
cd /usr/ports/sysutils/stackit/ && make install clean
226+
```
227+
228+
To add the package, run one of these commands:
229+
230+
```shell
231+
pkg install sysutils/stackit
232+
# OR
233+
pkg install stackit
234+
```
235+
218236
### Pre-compiled binary
219237

220238
1. Download the binary corresponding to your operating system and CPU architecture from our [Releases](https://github.com/stackitcloud/stackit-cli/releases) page

docs/stackit_beta.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ stackit beta [flags]
4242

4343
* [stackit](./stackit.md) - Manage STACKIT resources using the command line
4444
* [stackit beta alb](./stackit_beta_alb.md) - Manages application loadbalancers
45+
* [stackit beta edge-cloud](./stackit_beta_edge-cloud.md) - Provides functionality for edge services.
4546
* [stackit beta intake](./stackit_beta_intake.md) - Provides functionality for intake
4647
* [stackit beta kms](./stackit_beta_kms.md) - Provides functionality for KMS
4748
* [stackit beta logs](./stackit_beta_logs.md) - Provides functionality for Logs

docs/stackit_beta_edge-cloud.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
## stackit beta edge-cloud
2+
3+
Provides functionality for edge services.
4+
5+
### Synopsis
6+
7+
Provides functionality for STACKIT Edge Cloud (STEC) services.
8+
9+
```
10+
stackit beta edge-cloud [flags]
11+
```
12+
13+
### Options
14+
15+
```
16+
-h, --help Help for "stackit beta edge-cloud"
17+
```
18+
19+
### Options inherited from parent commands
20+
21+
```
22+
-y, --assume-yes If set, skips all confirmation prompts
23+
--async If set, runs the command asynchronously
24+
-o, --output-format string Output format, one of ["json" "pretty" "none" "yaml"]
25+
-p, --project-id string Project ID
26+
--region string Target region for region-specific requests
27+
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
28+
```
29+
30+
### SEE ALSO
31+
32+
* [stackit beta](./stackit_beta.md) - Contains beta STACKIT CLI commands
33+
* [stackit beta edge-cloud instance](./stackit_beta_edge-cloud_instance.md) - Provides functionality for edge instances.
34+
* [stackit beta edge-cloud kubeconfig](./stackit_beta_edge-cloud_kubeconfig.md) - Provides functionality for edge kubeconfig.
35+
* [stackit beta edge-cloud plans](./stackit_beta_edge-cloud_plans.md) - Provides functionality for edge service plans.
36+
* [stackit beta edge-cloud token](./stackit_beta_edge-cloud_token.md) - Provides functionality for edge service token.
37+
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
## stackit beta edge-cloud instance
2+
3+
Provides functionality for edge instances.
4+
5+
### Synopsis
6+
7+
Provides functionality for STACKIT Edge Cloud (STEC) instance management.
8+
9+
```
10+
stackit beta edge-cloud instance [flags]
11+
```
12+
13+
### Options
14+
15+
```
16+
-h, --help Help for "stackit beta edge-cloud instance"
17+
```
18+
19+
### Options inherited from parent commands
20+
21+
```
22+
-y, --assume-yes If set, skips all confirmation prompts
23+
--async If set, runs the command asynchronously
24+
-o, --output-format string Output format, one of ["json" "pretty" "none" "yaml"]
25+
-p, --project-id string Project ID
26+
--region string Target region for region-specific requests
27+
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
28+
```
29+
30+
### SEE ALSO
31+
32+
* [stackit beta edge-cloud](./stackit_beta_edge-cloud.md) - Provides functionality for edge services.
33+
* [stackit beta edge-cloud instance create](./stackit_beta_edge-cloud_instance_create.md) - Creates an edge instance
34+
* [stackit beta edge-cloud instance delete](./stackit_beta_edge-cloud_instance_delete.md) - Deletes an edge instance
35+
* [stackit beta edge-cloud instance describe](./stackit_beta_edge-cloud_instance_describe.md) - Describes an edge instance
36+
* [stackit beta edge-cloud instance list](./stackit_beta_edge-cloud_instance_list.md) - Lists edge instances
37+
* [stackit beta edge-cloud instance update](./stackit_beta_edge-cloud_instance_update.md) - Updates an edge instance
38+
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
## stackit beta edge-cloud instance create
2+
3+
Creates an edge instance
4+
5+
### Synopsis
6+
7+
Creates a STACKIT Edge Cloud (STEC) instance. The instance will take a moment to become fully functional.
8+
9+
```
10+
stackit beta edge-cloud instance create [flags]
11+
```
12+
13+
### Examples
14+
15+
```
16+
Creates an edge instance with the name "xxx" and plan-id "yyy"
17+
$ stackit beta edge-cloud instance create --name "xxx" --plan-id "yyy"
18+
```
19+
20+
### Options
21+
22+
```
23+
-d, --description string A user chosen description to distinguish multiple instances.
24+
-h, --help Help for "stackit beta edge-cloud instance create"
25+
-n, --name string The displayed name to distinguish multiple instances.
26+
--plan-id string Service Plan configures the size of the Instance.
27+
```
28+
29+
### Options inherited from parent commands
30+
31+
```
32+
-y, --assume-yes If set, skips all confirmation prompts
33+
--async If set, runs the command asynchronously
34+
-o, --output-format string Output format, one of ["json" "pretty" "none" "yaml"]
35+
-p, --project-id string Project ID
36+
--region string Target region for region-specific requests
37+
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
38+
```
39+
40+
### SEE ALSO
41+
42+
* [stackit beta edge-cloud instance](./stackit_beta_edge-cloud_instance.md) - Provides functionality for edge instances.
43+
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
## stackit beta edge-cloud instance delete
2+
3+
Deletes an edge instance
4+
5+
### Synopsis
6+
7+
Deletes a STACKIT Edge Cloud (STEC) instance. The instance will be deleted permanently.
8+
9+
```
10+
stackit beta edge-cloud instance delete [flags]
11+
```
12+
13+
### Examples
14+
15+
```
16+
Delete an edge instance with id "xxx"
17+
$ stackit beta edge-cloud instance delete --id "xxx"
18+
19+
Delete an edge instance with name "xxx"
20+
$ stackit beta edge-cloud instance delete --name "xxx"
21+
```
22+
23+
### Options
24+
25+
```
26+
-h, --help Help for "stackit beta edge-cloud instance delete"
27+
-i, --id string The project-unique identifier of this instance.
28+
-n, --name string The displayed name to distinguish multiple instances.
29+
```
30+
31+
### Options inherited from parent commands
32+
33+
```
34+
-y, --assume-yes If set, skips all confirmation prompts
35+
--async If set, runs the command asynchronously
36+
-o, --output-format string Output format, one of ["json" "pretty" "none" "yaml"]
37+
-p, --project-id string Project ID
38+
--region string Target region for region-specific requests
39+
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
40+
```
41+
42+
### SEE ALSO
43+
44+
* [stackit beta edge-cloud instance](./stackit_beta_edge-cloud_instance.md) - Provides functionality for edge instances.
45+
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
## stackit beta edge-cloud instance describe
2+
3+
Describes an edge instance
4+
5+
### Synopsis
6+
7+
Describes a STACKIT Edge Cloud (STEC) instance.
8+
9+
```
10+
stackit beta edge-cloud instance describe [flags]
11+
```
12+
13+
### Examples
14+
15+
```
16+
Describe an edge instance with id "xxx"
17+
$ stackit beta edge-cloud instance describe --id <ID>
18+
19+
Describe an edge instance with name "xxx"
20+
$ stackit beta edge-cloud instance describe --name <NAME>
21+
```
22+
23+
### Options
24+
25+
```
26+
-h, --help Help for "stackit beta edge-cloud instance describe"
27+
-i, --id string The project-unique identifier of this instance.
28+
-n, --name string The displayed name to distinguish multiple instances.
29+
```
30+
31+
### Options inherited from parent commands
32+
33+
```
34+
-y, --assume-yes If set, skips all confirmation prompts
35+
--async If set, runs the command asynchronously
36+
-o, --output-format string Output format, one of ["json" "pretty" "none" "yaml"]
37+
-p, --project-id string Project ID
38+
--region string Target region for region-specific requests
39+
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
40+
```
41+
42+
### SEE ALSO
43+
44+
* [stackit beta edge-cloud instance](./stackit_beta_edge-cloud_instance.md) - Provides functionality for edge instances.
45+
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
## stackit beta edge-cloud instance list
2+
3+
Lists edge instances
4+
5+
### Synopsis
6+
7+
Lists STACKIT Edge Cloud (STEC) instances of a project.
8+
9+
```
10+
stackit beta edge-cloud instance list [flags]
11+
```
12+
13+
### Examples
14+
15+
```
16+
Lists all edge instances of a given project
17+
$ stackit beta edge-cloud instance list
18+
19+
Lists all edge instances of a given project and limits the output to two instances
20+
$ stackit beta edge-cloud instance list --limit 2
21+
```
22+
23+
### Options
24+
25+
```
26+
-h, --help Help for "stackit beta edge-cloud instance list"
27+
--limit int Maximum number of entries to list
28+
```
29+
30+
### Options inherited from parent commands
31+
32+
```
33+
-y, --assume-yes If set, skips all confirmation prompts
34+
--async If set, runs the command asynchronously
35+
-o, --output-format string Output format, one of ["json" "pretty" "none" "yaml"]
36+
-p, --project-id string Project ID
37+
--region string Target region for region-specific requests
38+
--verbosity string Verbosity of the CLI, one of ["debug" "info" "warning" "error"] (default "info")
39+
```
40+
41+
### SEE ALSO
42+
43+
* [stackit beta edge-cloud instance](./stackit_beta_edge-cloud_instance.md) - Provides functionality for edge instances.
44+

0 commit comments

Comments
 (0)