fix(gitea): pin image registry to docker.io, disable rootless variant

Gitea Helm chart v10.x changed defaults:
  image.registry: docker.gitea.com  (was docker.io)
  image.rootless: true              (was false)

Our values set repository/tag but not registry/rootless, so the new
defaults produced docker.gitea.com/gitea/gitea:1.22.3-rootless which
can't be pulled from gandalf. Pin registry: docker.io and rootless: false
to keep using the standard Docker Hub image.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
chrisfu 2026-05-08 23:18:16 -07:00
parent 363123ca8e
commit 1cc9c4e07a

View File

@ -724,8 +724,10 @@ build_helm_values() {
cat > "$values_file" <<EOF
image:
registry: docker.io
repository: gitea/gitea
tag: "${GITEA_IMAGE_TAG}"
rootless: false
pullPolicy: IfNotPresent
service: