Skip to content
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
1 change: 1 addition & 0 deletions charts/sourcebot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
4 changes: 4 additions & 0 deletions charts/sourcebot/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
"type": "boolean"
}
}
},
"imagePullSecrets": {
"type": "array",
"items": { "type": "string" }
}
}
},
Expand Down
3 changes: 3 additions & 0 deletions charts/sourcebot/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: ""
Expand Down