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

chore: update proxy charts version #425

Merged
merged 1 commit into from
Jul 9, 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
4 changes: 2 additions & 2 deletions charts/apache-shardingsphere-proxy-charts/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
#

apiVersion: v2
appVersion: 5.3.1
appVersion: 5.4.0
name: apache-shardingsphere-proxy-charts
description: A Helm chart for ShardingSphere-Proxy-Cluster
version: 0.2.0
version: 0.3.0
maintainers:
- name: [email protected]
dependencies:
Expand Down
6 changes: 3 additions & 3 deletions charts/apache-shardingsphere-proxy-charts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Use the following command to install:
```
helm repo add shardingsphere https://apache.github.io/shardingsphere-on-cloud
helm repo update
helm install [RELEASE_NAME] shardingsphere/apache-shardingsphere-proxy-charts --version 0.1.0
helm install [RELEASE_NAME] shardingsphere/apache-shardingsphere-proxy-charts --version 0.3.0
```

## Uninstall
Expand Down Expand Up @@ -51,7 +51,7 @@ helm unstall [RELEASE_NAME]
| ------------------------------------- | -------------------------------------------------------------- | ------------------------------- |
| `compute.image.repository` | Image name of ShardingSphere-Proxy. | `apache/shardingsphere-proxy` |
| `compute.image.pullPolicy` | The policy for pulling ShardingSphere-Proxy image | `IfNotPresent` |
| `compute.image.tag` | ShardingSphere-Proxy image tag | `5.2.0` |
| `compute.image.tag` | ShardingSphere-Proxy image tag | `5.4.0` |
| `compute.imagePullSecrets` | Specify docker-registry secret names as an array | `[]` |
| `compute.resources.limits` | The resources limits for the ShardingSphere-Proxy containers | `{}` |
| `compute.resources.requests.memory` | The requested memory for the ShardingSphere-Proxy containers | `2Gi` |
Expand All @@ -62,5 +62,5 @@ helm unstall [RELEASE_NAME]
| `compute.mysqlConnector.version` | MySQL connector version | `5.1.49` |
| `compute.startPort` | ShardingSphere-Proxy start port | `3307` |
| `compute.serverConfig` | Server Configuration file for ShardingSphere-Proxy | `""` |
| `compute.agent.enabled` | switch to enable or disable the agent metrics | `true` |
| `compute.agent.enabled` | switch to enable or disable the agent metrics | `false` |
| `compute.agent.config` | agent Configuration file for ShardingSphere-Proxy agent | `""` |
4 changes: 2 additions & 2 deletions charts/apache-shardingsphere-proxy-charts/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ compute:
pullPolicy: IfNotPresent
## Overrides the image tag whose default is the chart appVersion.
##
tag: "5.3.1"
tag: "5.4.0"
## @param compute.imagePullSecrets Specify docker-registry secret names as an array
## e.g:
## imagePullSecrets:
Expand Down Expand Up @@ -161,7 +161,7 @@ compute:
## @section Compute-Node ShardingSphere-Proxy agent parameters
## @param compute.agent.enabled Switch to enable or disable the agent metrics
agent:
enabled: true
enabled: false
## @section Compute-Node ShardingSphere-Proxy agent Configuration parameters
## ref: https://shardingsphere.apache.org/document/current/en/user-manual/shardingsphere-proxy/observability/
## @param compute.agent.config.plugins list the agent plugins we can use
Expand Down
Loading