Skip to content

Commit

Permalink
chore(release): 1.41.0-rc.1 [skip ci]
Browse files Browse the repository at this point in the history
# [1.41.0-rc.1](v1.40.0...v1.41.0-rc.1) (2023-06-05)

### Bug Fixes

* **base:** Make sure telemetry does not interfere with CLI ([#913](#913)) ([b92cc8e](b92cc8e))
* **ports:** Use a list of restricted ports instead of allowing ports ([121d0b8](121d0b8))
* **warning:** Add a warning for livenessprobe to let users know that path and port will be deprecated soon ([8bb5dc4](8bb5dc4))

### Features

* **environment:** Add --flag=zero-trust to env:create ([#906](#906)) ([f3ef7b9](f3ef7b9))
* **spec:** Dependencies without tags ([#893](#893)) ([015a3a9](015a3a9))
  • Loading branch information
semantic-release-bot committed Jun 5, 2023
1 parent 13fe63b commit 0c43798
Show file tree
Hide file tree
Showing 4 changed files with 76 additions and 79 deletions.
133 changes: 65 additions & 68 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ $ npm install -g @architect-io/cli
$ architect COMMAND
running command...
$ architect (--version)
@architect-io/cli/1.40.0-rc.8 linux-x64 node-v16.20.0
@architect-io/cli/1.40.0-rc.9 linux-x64 node-v16.20.0
$ architect --help [COMMAND]
USAGE
$ architect COMMAND
Expand All @@ -50,42 +50,39 @@ USAGE
## Commands

<!-- commands -->
- [Requirements](#requirements)
- [Usage](#usage)
- [Commands](#commands)
- [`architect autocomplete [SHELL]`](#architect-autocomplete-shell)
- [`architect clusters [QUERY]`](#architect-clusters-query)
- [`architect clusters:create [CLUSTER]`](#architect-clusterscreate-cluster)
- [`architect clusters:destroy [CLUSTER]`](#architect-clustersdestroy-cluster)
- [`architect components:versions [COMPONENT_NAME]`](#architect-componentsversions-component_name)
- [`architect config:get OPTION`](#architect-configget-option)
- [`architect config:set OPTION VALUE`](#architect-configset-option-value)
- [`architect config:view`](#architect-configview)
- [`architect deploy [CONFIGS_OR_COMPONENTS]`](#architect-deploy-configs_or_components)
- [`architect destroy`](#architect-destroy)
- [`architect dev [CONFIGS_OR_COMPONENTS]`](#architect-dev-configs_or_components)
- [`architect dev:list`](#architect-devlist)
- [`architect dev:restart [SERVICES]`](#architect-devrestart-services)
- [`architect dev:stop [NAME]`](#architect-devstop-name)
- [`architect doctor`](#architect-doctor)
- [`architect environments:create [ENVIRONMENT]`](#architect-environmentscreate-environment)
- [`architect environments:destroy [ENVIRONMENT]`](#architect-environmentsdestroy-environment)
- [`architect environments:ingresses [ENVIRONMENT]`](#architect-environmentsingresses-environment)
- [`architect exec [RESOURCE] [FLAGS] -- [COMMAND]`](#architect-exec-resource-flags----command)
- [`architect help [COMMAND]`](#architect-help-command)
- [`architect init [NAME]`](#architect-init-name)
- [`architect link [COMPONENTPATH]`](#architect-link-componentpath)
- [`architect link:list`](#architect-linklist)
- [`architect login`](#architect-login)
- [`architect logout`](#architect-logout)
- [`architect logs [RESOURCE]`](#architect-logs-resource)
- [`architect port-forward [RESOURCE] [FLAGS]`](#architect-port-forward-resource-flags)
- [`architect register [COMPONENT]`](#architect-register-component)
- [`architect scale [SERVICE]`](#architect-scale-service)
- [`architect secrets:download SECRETS_FILE`](#architect-secretsdownload-secrets_file)
- [`architect secrets:upload SECRETS_FILE`](#architect-secretsupload-secrets_file)
- [`architect task COMPONENT TASK`](#architect-task-component-task)
- [`architect unlink [COMPONENTPATHORNAME]`](#architect-unlink-componentpathorname)
* [`architect autocomplete [SHELL]`](#architect-autocomplete-shell)
* [`architect clusters [QUERY]`](#architect-clusters-query)
* [`architect clusters:create [CLUSTER]`](#architect-clusterscreate-cluster)
* [`architect clusters:destroy [CLUSTER]`](#architect-clustersdestroy-cluster)
* [`architect components:versions [COMPONENT_NAME]`](#architect-componentsversions-component_name)
* [`architect config:get OPTION`](#architect-configget-option)
* [`architect config:set OPTION VALUE`](#architect-configset-option-value)
* [`architect config:view`](#architect-configview)
* [`architect deploy [CONFIGS_OR_COMPONENTS]`](#architect-deploy-configs_or_components)
* [`architect destroy`](#architect-destroy)
* [`architect dev [CONFIGS_OR_COMPONENTS]`](#architect-dev-configs_or_components)
* [`architect dev:list`](#architect-devlist)
* [`architect dev:restart [SERVICES]`](#architect-devrestart-services)
* [`architect dev:stop [NAME]`](#architect-devstop-name)
* [`architect doctor`](#architect-doctor)
* [`architect environments:create [ENVIRONMENT]`](#architect-environmentscreate-environment)
* [`architect environments:destroy [ENVIRONMENT]`](#architect-environmentsdestroy-environment)
* [`architect environments:ingresses [ENVIRONMENT]`](#architect-environmentsingresses-environment)
* [`architect exec [RESOURCE] [FLAGS] -- [COMMAND]`](#architect-exec-resource-flags----command)
* [`architect help [COMMAND]`](#architect-help-command)
* [`architect init [NAME]`](#architect-init-name)
* [`architect link [COMPONENTPATH]`](#architect-link-componentpath)
* [`architect link:list`](#architect-linklist)
* [`architect login`](#architect-login)
* [`architect logout`](#architect-logout)
* [`architect logs [RESOURCE]`](#architect-logs-resource)
* [`architect port-forward [RESOURCE] [FLAGS]`](#architect-port-forward-resource-flags)
* [`architect register [COMPONENT]`](#architect-register-component)
* [`architect scale [SERVICE]`](#architect-scale-service)
* [`architect secrets:download SECRETS_FILE`](#architect-secretsdownload-secrets_file)
* [`architect secrets:upload SECRETS_FILE`](#architect-secretsupload-secrets_file)
* [`architect task COMPONENT TASK`](#architect-task-component-task)
* [`architect unlink [COMPONENTPATHORNAME]`](#architect-unlink-componentpathorname)

## `architect autocomplete [SHELL]`

Expand Down Expand Up @@ -146,7 +143,7 @@ EXAMPLES
$ architect clusters --account=myaccount mycluster
```

_See code: [src/commands/clusters/index.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/clusters/index.ts)_
_See code: [src/commands/clusters/index.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/clusters/index.ts)_

## `architect clusters:create [CLUSTER]`

Expand Down Expand Up @@ -181,7 +178,7 @@ EXAMPLES
$ architect clusters:register --account=myaccount --kubeconfig=~/.kube/config --auto-approve
```

_See code: [src/commands/clusters/create.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/clusters/create.ts)_
_See code: [src/commands/clusters/create.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/clusters/create.ts)_

## `architect clusters:destroy [CLUSTER]`

Expand Down Expand Up @@ -212,7 +209,7 @@ EXAMPLES
$ architect clusters:deregister --account=myaccount --auto-approve --force architect
```

_See code: [src/commands/clusters/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/clusters/destroy.ts)_
_See code: [src/commands/clusters/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/clusters/destroy.ts)_

## `architect components:versions [COMPONENT_NAME]`

Expand All @@ -238,7 +235,7 @@ EXAMPLES
$ architect component:versions --account=myaccount mycomponent
```

_See code: [src/commands/components/versions.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/components/versions.ts)_
_See code: [src/commands/components/versions.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/components/versions.ts)_

## `architect config:get OPTION`

Expand All @@ -258,7 +255,7 @@ EXAMPLES
$ architect config:get log_level
```

_See code: [src/commands/config/get.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/config/get.ts)_
_See code: [src/commands/config/get.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/config/get.ts)_

## `architect config:set OPTION VALUE`

Expand All @@ -279,7 +276,7 @@ EXAMPLES
$ architect config:set log_level info
```

_See code: [src/commands/config/set.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/config/set.ts)_
_See code: [src/commands/config/set.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/config/set.ts)_

## `architect config:view`

Expand All @@ -299,7 +296,7 @@ EXAMPLES
$ architect config
```

_See code: [src/commands/config/view.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/config/view.ts)_
_See code: [src/commands/config/view.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/config/view.ts)_

## `architect deploy [CONFIGS_OR_COMPONENTS]`

Expand Down Expand Up @@ -342,7 +339,7 @@ EXAMPLES
$ architect deploy ./myfolder/architect.yml --secret-file=./mysecrets.yml --environment=myenvironment --account=myaccount --auto-approve
```

_See code: [src/commands/deploy.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/deploy.ts)_
_See code: [src/commands/deploy.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/deploy.ts)_

## `architect destroy`

Expand All @@ -368,7 +365,7 @@ EXAMPLES
$ architect destroy --account=myaccount --environment=myenvironment --auto-approve
```

_See code: [src/commands/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/destroy.ts)_
_See code: [src/commands/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/destroy.ts)_

## `architect dev [CONFIGS_OR_COMPONENTS]`

Expand Down Expand Up @@ -413,7 +410,7 @@ EXAMPLES
$ architect dev --port=1234 --browser=false --debug=true --secret-file=./mycomponent/mysecrets.yml ./mycomponent/architect.yml
```

_See code: [src/commands/dev/index.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/dev/index.ts)_
_See code: [src/commands/dev/index.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/dev/index.ts)_

## `architect dev:list`

Expand All @@ -434,7 +431,7 @@ EXAMPLES
$ architect dev:list
```

_See code: [src/commands/dev/list.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/dev/list.ts)_
_See code: [src/commands/dev/list.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/dev/list.ts)_

## `architect dev:restart [SERVICES]`

Expand Down Expand Up @@ -462,7 +459,7 @@ EXAMPLES
$ architect dev:restart hello-world.services.api hello-world.services.app
```

_See code: [src/commands/dev/restart.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/dev/restart.ts)_
_See code: [src/commands/dev/restart.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/dev/restart.ts)_

## `architect dev:stop [NAME]`

Expand All @@ -482,7 +479,7 @@ EXAMPLES
$ architect dev:stop <local-environment-name>
```

_See code: [src/commands/dev/stop.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/dev/stop.ts)_
_See code: [src/commands/dev/stop.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/dev/stop.ts)_

## `architect doctor`

Expand All @@ -504,7 +501,7 @@ EXAMPLES
$ architect doctor -o ./myoutput.yml
```

_See code: [src/commands/doctor.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/doctor.ts)_
_See code: [src/commands/doctor.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/doctor.ts)_

## `architect environments:create [ENVIRONMENT]`

Expand Down Expand Up @@ -541,7 +538,7 @@ EXAMPLES
environment:create --account=myaccount --ttl=5days --description="My new temporary Architect environment" myenvironment
```

_See code: [src/commands/environments/create.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/environments/create.ts)_
_See code: [src/commands/environments/create.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/environments/create.ts)_

## `architect environments:destroy [ENVIRONMENT]`

Expand Down Expand Up @@ -575,7 +572,7 @@ EXAMPLES
$ architect environment:deregister --account=myaccount --auto-approve --force myenvironment
```

_See code: [src/commands/environments/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/environments/destroy.ts)_
_See code: [src/commands/environments/destroy.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/environments/destroy.ts)_

## `architect environments:ingresses [ENVIRONMENT]`

Expand All @@ -600,7 +597,7 @@ ALIASES
$ architect env:ingresses
```

_See code: [src/commands/environments/ingresses.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/environments/ingresses.ts)_
_See code: [src/commands/environments/ingresses.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/environments/ingresses.ts)_

## `architect exec [RESOURCE] [FLAGS] -- [COMMAND]`

Expand Down Expand Up @@ -633,7 +630,7 @@ EXAMPLES
$ architect exec --account myaccount --environment myenvironment mycomponent.services.app --replica 0 -- /bin/sh
```

_See code: [src/commands/exec.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/exec.ts)_
_See code: [src/commands/exec.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/exec.ts)_

## `architect help [COMMAND]`

Expand Down Expand Up @@ -683,7 +680,7 @@ EXAMPLES
$ architect init --from-compose=mycompose.yml --component-file=architect.yml
```

_See code: [src/commands/init.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/init.ts)_
_See code: [src/commands/init.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/init.ts)_

## `architect link [COMPONENTPATH]`

Expand All @@ -705,7 +702,7 @@ EXAMPLES
$ architect link -p ./mycomponent/architect.yml
```

_See code: [src/commands/link/index.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/link/index.ts)_
_See code: [src/commands/link/index.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/link/index.ts)_

## `architect link:list`

Expand All @@ -722,7 +719,7 @@ EXAMPLES
$ architect link:list
```

_See code: [src/commands/link/list.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/link/list.ts)_
_See code: [src/commands/link/list.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/link/list.ts)_

## `architect login`

Expand All @@ -745,7 +742,7 @@ EXAMPLES
$ architect login -e [email protected]
```

_See code: [src/commands/login.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/login.ts)_
_See code: [src/commands/login.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/login.ts)_

## `architect logout`

Expand All @@ -762,7 +759,7 @@ EXAMPLES
$ architect logout
```

_See code: [src/commands/logout.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/logout.ts)_
_See code: [src/commands/logout.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/logout.ts)_

## `architect logs [RESOURCE]`

Expand Down Expand Up @@ -797,7 +794,7 @@ EXAMPLES
$ architect logs --follow --raw --timestamps
```

_See code: [src/commands/logs.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/logs.ts)_
_See code: [src/commands/logs.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/logs.ts)_

## `architect port-forward [RESOURCE] [FLAGS]`

Expand Down Expand Up @@ -832,7 +829,7 @@ EXAMPLES
$ architect port-forward --address 0.0.0.0 --port 8080
```

_See code: [src/commands/port-forward.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/port-forward.ts)_
_See code: [src/commands/port-forward.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/port-forward.ts)_

## `architect register [COMPONENT]`

Expand Down Expand Up @@ -874,7 +871,7 @@ EXAMPLES
$ architect register -a myaccount -t latest --arg NODE_ENV=dev ./architect.yml
```

_See code: [src/commands/register.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/register.ts)_
_See code: [src/commands/register.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/register.ts)_

## `architect scale [SERVICE]`

Expand Down Expand Up @@ -905,7 +902,7 @@ EXAMPLES
$ architect scale api --component my-component --clear
```

_See code: [src/commands/scale.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/scale.ts)_
_See code: [src/commands/scale.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/scale.ts)_

## `architect secrets:download SECRETS_FILE`

Expand Down Expand Up @@ -938,7 +935,7 @@ EXAMPLES
$ architect secrets --account=myaccount --environment=myenvironment ./mysecrets.yml
```

_See code: [src/commands/secrets/download.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/secrets/download.ts)_
_See code: [src/commands/secrets/download.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/secrets/download.ts)_

## `architect secrets:upload SECRETS_FILE`

Expand Down Expand Up @@ -977,7 +974,7 @@ EXAMPLES
$ architect secrets:set --account=myaccount --environment=myenvironment --override ./mysecrets.yml
```

_See code: [src/commands/secrets/upload.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/secrets/upload.ts)_
_See code: [src/commands/secrets/upload.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/secrets/upload.ts)_

## `architect task COMPONENT TASK`

Expand Down Expand Up @@ -1007,7 +1004,7 @@ EXAMPLES
$ architect task --account=myaccount --environment=myenvironment mycomponent:latest mytask
```

_See code: [src/commands/task.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/task.ts)_
_See code: [src/commands/task.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/task.ts)_

## `architect unlink [COMPONENTPATHORNAME]`

Expand All @@ -1031,5 +1028,5 @@ EXAMPLES
$ architect unlink -p mycomponent
```

_See code: [src/commands/unlink.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.8/src/commands/unlink.ts)_
_See code: [src/commands/unlink.ts](https://github.com/architect-team/architect-cli/blob/v1.40.0-rc.9/src/commands/unlink.ts)_
<!-- commandsstop -->
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@architect-io/cli",
"description": "Command-line interface for Architect.io",
"version": "1.40.0-rc.9",
"version": "1.41.0-rc.1",
"author": "Architect.io",
"bin": {
"architect": "./bin/run"
Expand Down
Loading

0 comments on commit 0c43798

Please sign in to comment.