Skip to content

Commit

Permalink
adjust release links and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
arttor committed May 2, 2024
1 parent 45934cd commit caf5fb2
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 11 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
pull_request:
branches:
- main
paths:
- ".github/**"
- "**.go"
- "**/config.yaml"
jobs:
test:
runs-on: ubuntu-latest
Expand Down
18 changes: 10 additions & 8 deletions deploy/chorus/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ proxy:
port: 9669
targetPort: http
type: ClusterIP
config:
config: # for full spec and default values see proxy config: https://github.com/clyso/chorus/blob/main/service/proxy/config.yaml and common config https://github.com/clyso/chorus/blob/main/pkg/config/config.yaml
metrics:
enabled: false
log:
Expand All @@ -35,11 +35,13 @@ proxy:
auth:
allowV2Signature: false
useStorage: # use credentials from one of configured storages <one|two>
custom: # use custom credentials for proxy s3 endpoint
# - accessKeyID: <s3 v4 accessKey credential>
# secretAccessKey: <s3 v4 secretKey credential>
# - accessKeyID: <s3 v4 accessKey credential>
# secretAccessKey: <s3 v4 secretKey credential>
custom: # or use custom credentials for proxy s3 endpoint
# user1:
# accessKeyID: <user1 v4 accessKey credential>
# secretAccessKey: <user1 v4 secretKey credential>
# user2:
# accessKeyID: <user2 v4 accessKey credential>
# secretAccessKey: <user2 v4 secretKey credential>
worker:
replicas: 2
image:
Expand All @@ -63,7 +65,7 @@ worker:
port: 9670
targetPort: grpc
type: ClusterIP
config:
config: # for full spec and default values see worker config: https://github.com/clyso/chorus/blob/main/service/worker/config.yaml and common config https://github.com/clyso/chorus/blob/main/pkg/config/config.yaml
metrics:
enabled: false
log:
Expand Down Expand Up @@ -130,7 +132,7 @@ agent:
port: 9673
targetPort: http
type: ClusterIP
config:
config: # for full spec and default values see agent config: https://github.com/clyso/chorus/blob/main/service/agent/config.yaml and common config https://github.com/clyso/chorus/blob/main/pkg/config/config.yaml
metrics:
enabled: false
log:
Expand Down
4 changes: 2 additions & 2 deletions service/proxy/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ cors:
auth:
allowV2Signature: false
useStorage: # use credentials from one of configured storages <one|two>
custom: # use custom credentials for proxy s3 endpoint
custom: # OR use custom credentials for proxy s3 endpoint
# user1:
# accessKeyID: <user1 v4 accessKey credential>
# secretAccessKey: <user1 v4 secretKey credential>
Expand Down Expand Up @@ -51,4 +51,4 @@ storage:
# isSecure: true #set false for http address
# rateLimit:
# enable: true
# rpm: 60
# rpm: 60
7 changes: 6 additions & 1 deletion tools/chorctl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ CLI for chorus management api.
```shell
go build .
```
Or download binary from [docs page](https://docs.clyso.com/docs/products/chorus/installation#management-cli)
Or download binary from [the latest release](https://github.com/clyso/chorus/releases).

Or with homebrew (MacOS and Linux only):
```shell
brew install clyso/tap/chorctl
```

## Usage

Expand Down

0 comments on commit caf5fb2

Please sign in to comment.