Skip to content

Commit 689f58c

Browse files
Merge pull request #9 from alexsavulescu/main
Allow global.imagePullSecrets
2 parents 21dc5fc + eb69449 commit 689f58c

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

charts/sourcebot/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Sourcebot is a self-hosted tool that helps you understand your codebase.
2323
| Key | Type | Default | Description |
2424
|-----|------|---------|-------------|
2525
| 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 |
26+
| global.imagePullSecrets | list | `[]` | Global Docker registry secret names as an array |
2627
| 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). |
2728
| nameOverride | string | `""` | Override the name for the selector labels, defaults to the chart name |
2829
| postgresql.auth.args | string | `""` | Additional database connection arguments |

charts/sourcebot/values.schema.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
"type": "boolean"
1616
}
1717
}
18+
},
19+
"imagePullSecrets": {
20+
"type": "array",
21+
"items": { "type": "string" }
1822
}
1923
}
2024
},

charts/sourcebot/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ global:
44
security:
55
# -- Allow insecure images to use bitnami legacy repository. Can be set to false if secure images are being used (Paid).
66
allowInsecureImages: true
7+
8+
# -- Global Docker registry secret names as an array
9+
imagePullSecrets: []
710

811
# -- Override the name for the selector labels, defaults to the chart name
912
nameOverride: ""

0 commit comments

Comments
 (0)