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

Fix dbgate chart #958

Merged
merged 1 commit into from
Mar 24, 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
71 changes: 36 additions & 35 deletions charts/dbgate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,41 +45,42 @@ The command removes all the Kubernetes components associated with the chart and

The following table lists the configurable parameters of the `dbgate` chart and their default values.

| Parameter | Description | Default |
|--------------------------------|------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------|
| replicaCount | | <code>1</code> |
| image.repository | | <code>"dbgate/dbgate"</code> |
| image.pullPolicy | | <code>Always</code> |
| image.tag | Overrides the image tag whose default is the chart appVersion. | <code>"alpine"</code> |
| imagePullSecrets | | <code>[]</code> |
| nameOverride | | <code>""</code> |
| fullnameOverride | | <code>""</code> |
| serviceAccount.create | Specifies whether a service account should be created | <code>true</code> |
| serviceAccount.annotations | Annotations to add to the service account | <code>{}</code> |
| serviceAccount.name | The name of the service account to use. If not set and create is true, a name is generated using the fullname template | <code>""</code> |
| podAnnotations | | <code>{}</code> |
| podSecurityContext | | <code>{}</code> |
| service.type | | <code>ClusterIP</code> |
| service.port | | <code>80</code> |
| resources | | <code>{}</code> |
| nodeSelector | | <code>{}</code> |
| tolerations | | <code>[]</code> |
| affinity | | <code>{}</code> |
| namespace.create | | <code>false</code> |
| gateway.className | | <code>"ace"</code> |
| gateway.port | | <code>8082</code> |
| gateway.tlsSecretRef.name | | <code>service-presets-cert</code> |
| gateway.tlsSecretRef.namespace | | <code>ace</code> |
| gateway.referenceGrant.create | | <code>true</code> |
| keda.proxyService.namespace | | <code>"keda"</code> |
| keda.proxyService.name | | <code>"keda-add-ons-http-interceptor-proxy"</code> |
| keda.proxyService.port | | <code>8080</code> |
| targetPendingRequests | | <code>200</code> |
| autoscaling.http.minReplicas | | <code>0</code> |
| autoscaling.http.maxReplicas | | <code>1</code> |
| app.service.name | | <code>""</code> |
| app.service.namespace | | <code>""</code> |
| app.authSecret.name | | <code>""</code> |
| Parameter | Description | Default |
|--------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------|
| replicaCount | | <code>1</code> |
| image.repository | | <code>"dbgate/dbgate"</code> |
| image.pullPolicy | | <code>Always</code> |
| image.tag | Overrides the image tag whose default is the chart appVersion. | <code>"alpine"</code> |
| imagePullSecrets | | <code>[]</code> |
| nameOverride | | <code>""</code> |
| fullnameOverride | | <code>""</code> |
| serviceAccount.create | Specifies whether a service account should be created | <code>true</code> |
| serviceAccount.annotations | Annotations to add to the service account | <code>{}</code> |
| serviceAccount.name | The name of the service account to use. If not set and create is true, a name is generated using the fullname template | <code>""</code> |
| podAnnotations | | <code>{}</code> |
| podSecurityContext | | <code>{}</code> |
| service.type | | <code>ClusterIP</code> |
| service.port | | <code>80</code> |
| resources | | <code>{}</code> |
| nodeSelector | | <code>{}</code> |
| tolerations | | <code>[]</code> |
| affinity | | <code>{}</code> |
| namespace.create | | <code>false</code> |
| gateway.className | | <code>"ace"</code> |
| gateway.port | | <code>8082</code> |
| gateway.tlsSecretRef.name | | <code>service-presets-cert</code> |
| gateway.tlsSecretRef.namespace | | <code>ace</code> |
| gateway.referenceGrant.create | | <code>true</code> |
| keda.proxyService.namespace | | <code>"keda"</code> |
| keda.proxyService.name | | <code>"keda-add-ons-http-interceptor-proxy"</code> |
| keda.proxyService.port | | <code>8080</code> |
| targetPendingRequests | | <code>200</code> |
| autoscaling.http.minReplicas | | <code>0</code> |
| autoscaling.http.maxReplicas | | <code>1</code> |
| app.kind | MicrosoftSQLServer: mssql@dbgate-plugin-mssql MySQL: mysql@dbgate-plugin-mysql MariaDB: mariadb@dbgate-plugin-mysql Postgres: postgres@dbgate-plugin-postgres MongoDB: mongo@dbgate-plugin-mongo Redis: redis@dbgate-plugin-redis | <code>""</code> |
| app.service.name | | <code>""</code> |
| app.service.namespace | | <code>""</code> |
| app.authSecret.name | | <code>""</code> |


Specify each parameter using the `--set key=value[,key=value]` argument to `helm upgrade -i`. For example:
Expand Down
7 changes: 7 additions & 0 deletions charts/dbgate/ci/ci-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,10 @@ namespace:
# securityContext:
# seccompProfile:
# type: RuntimeDefault
app:
kind: "Postgres"
service:
name: "pg"
namespace: "demo"
authSecret:
name: "pg-auth"
Loading
Loading