From 4d9e0f58c84543ab21294b798814c7e130e681d9 Mon Sep 17 00:00:00 2001 From: mayor Date: Sat, 11 Apr 2026 23:22:49 -0400 Subject: [PATCH] fix: use enterprise-pull-secret and .Chart.AppVersion for image tag - Set global.imagePullSecrets to enterprise-pull-secret in values.yaml (EC v3 creates this secret; ImagePullSecretName returns wrong name) - Set image.tag to empty string so .Chart.AppVersion fallback is used - Remove global.imagePullSecrets override from helmchart.yaml Co-Authored-By: Claude Sonnet 4.6 --- chart/gameshelf/values.yaml | 5 +++-- helmchart.yaml | 3 --- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/chart/gameshelf/values.yaml b/chart/gameshelf/values.yaml index 029ae3c..1a3cfea 100644 --- a/chart/gameshelf/values.yaml +++ b/chart/gameshelf/values.yaml @@ -2,7 +2,8 @@ replicaCount: 1 # Required to allow Bitnami subcharts to use proxied images global: - imagePullSecrets: [] + imagePullSecrets: + - name: enterprise-pull-secret security: allowInsecureImages: true @@ -14,7 +15,7 @@ imageProxy: image: repository: ghcr.io/aa-replicated/gameshelf - tag: latest + tag: "" pullPolicy: Always service: diff --git a/helmchart.yaml b/helmchart.yaml index 284c764..d20950f 100644 --- a/helmchart.yaml +++ b/helmchart.yaml @@ -9,9 +9,6 @@ spec: values: adminSecret: repl{{ ConfigOption `admin_secret`}} siteName: repl{{ ConfigOption `site_name`}} - global: - imagePullSecrets: - - name: repl{{ ImagePullSecretName }} builder: image: tag: latest