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

adjust release links and docs #25

Merged
merged 1 commit into from
May 3, 2024
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
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
Loading