Skip to content

Commit 4d9e0f5

Browse files
aa-replicatedclaude
andcommitted
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 <noreply@anthropic.com>
1 parent 0424ac4 commit 4d9e0f5

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

chart/gameshelf/values.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ replicaCount: 1
22

33
# Required to allow Bitnami subcharts to use proxied images
44
global:
5-
imagePullSecrets: []
5+
imagePullSecrets:
6+
- name: enterprise-pull-secret
67
security:
78
allowInsecureImages: true
89

@@ -14,7 +15,7 @@ imageProxy:
1415

1516
image:
1617
repository: ghcr.io/aa-replicated/gameshelf
17-
tag: latest
18+
tag: ""
1819
pullPolicy: Always
1920

2021
service:

helmchart.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ spec:
99
values:
1010
adminSecret: repl{{ ConfigOption `admin_secret`}}
1111
siteName: repl{{ ConfigOption `site_name`}}
12-
global:
13-
imagePullSecrets:
14-
- name: repl{{ ImagePullSecretName }}
1512
builder:
1613
image:
1714
tag: latest

0 commit comments

Comments
 (0)