Skip to content

Commit

Permalink
Fix dbgate chart
Browse files Browse the repository at this point in the history
Signed-off-by: Tamal Saha <[email protected]>
  • Loading branch information
tamalsaha committed Mar 24, 2024
1 parent af9ca0c commit 06fedf2
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 40 deletions.
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

0 comments on commit 06fedf2

Please sign in to comment.