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
2 changes: 1 addition & 1 deletion charts/sourcebot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Sourcebot is a self-hosted tool that helps you understand your codebase.
| sourcebot.image.digest | string | `""` | Container image digest (used instead of tag if set) |
| sourcebot.image.pullPolicy | string | `"IfNotPresent"` | Image pull policy |
| sourcebot.image.pullSecrets | list | `[]` | Configure image pull secrets for private registries |
| sourcebot.image.repository | string | `"ghcr.io/sourcebot-dev/sourcebot"` | Container image repository |
| sourcebot.image.repository | string | `"docker.sourcebot.dev/sourcebot-dev/sourcebot"` | Container image repository |
| sourcebot.image.tag | string | `""` | Container image tag. Falls back to appVersion if not set. |
| sourcebot.ingress.annotations | object | `{}` | Ingress annotations |
| sourcebot.ingress.className | string | `""` | Ingress class name |
Expand Down
4 changes: 2 additions & 2 deletions charts/sourcebot/tests/basic_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ tests:
asserts:
- matchRegex:
path: spec.template.spec.containers[0].image
pattern: "ghcr.io/sourcebot-dev/sourcebot:v1.2.3$"
pattern: "docker.sourcebot.dev/sourcebot-dev/sourcebot:v1.2.3$"
template: deployment.yaml

- it: should use digest when specified
Expand All @@ -108,7 +108,7 @@ tests:
asserts:
- matchRegex:
path: spec.template.spec.containers[0].image
pattern: "ghcr.io/sourcebot-dev/sourcebot@sha256:abcdef123456$"
pattern: "docker.sourcebot.dev/sourcebot-dev/sourcebot@sha256:abcdef123456$"
template: deployment.yaml

- it: should set replica count
Expand Down
2 changes: 1 addition & 1 deletion charts/sourcebot/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ sourcebot:
# Image configuration
image:
# -- Container image repository
repository: ghcr.io/sourcebot-dev/sourcebot
repository: docker.sourcebot.dev/sourcebot-dev/sourcebot
# -- Container image tag. Falls back to appVersion if not set.
tag: ""
# -- Container image digest (used instead of tag if set)
Expand Down
Loading