diff --git a/charts/sourcebot/README.md b/charts/sourcebot/README.md index 2f227cb..c0142e0 100644 --- a/charts/sourcebot/README.md +++ b/charts/sourcebot/README.md @@ -23,6 +23,7 @@ Sourcebot is a self-hosted tool that helps you understand your codebase. | Key | Type | Default | Description | |-----|------|---------|-------------| | fullnameOverride | string | `""` | Override the full name of the deployed resources, defaults to a combination of the release name and the name for the selector labels | +| global.imagePullSecrets | list | `[]` | Global Docker registry secret names as an array | | global.security.allowInsecureImages | bool | `true` | Allow insecure images to use bitnami legacy repository. Can be set to false if secure images are being used (Paid). | | nameOverride | string | `""` | Override the name for the selector labels, defaults to the chart name | | postgresql.auth.args | string | `""` | Additional database connection arguments | diff --git a/charts/sourcebot/values.schema.json b/charts/sourcebot/values.schema.json index c6f4c3f..7a9232a 100644 --- a/charts/sourcebot/values.schema.json +++ b/charts/sourcebot/values.schema.json @@ -15,6 +15,10 @@ "type": "boolean" } } + }, + "imagePullSecrets": { + "type": "array", + "items": { "type": "string" } } } }, diff --git a/charts/sourcebot/values.yaml b/charts/sourcebot/values.yaml index ae80e11..a04eb80 100644 --- a/charts/sourcebot/values.yaml +++ b/charts/sourcebot/values.yaml @@ -4,6 +4,9 @@ global: security: # -- Allow insecure images to use bitnami legacy repository. Can be set to false if secure images are being used (Paid). allowInsecureImages: true + + # -- Global Docker registry secret names as an array + imagePullSecrets: [] # -- Override the name for the selector labels, defaults to the chart name nameOverride: ""