Skip to content

Commit df62f47

Browse files
Sceatclaude
andcommitted
feat(chart): add imagePullSecrets support
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent a6cb343 commit df62f47

3 files changed

Lines changed: 7 additions & 1 deletion

File tree

chart/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ apiVersion: v2
22
name: hydre-auth
33
description: A light GraphQL authentication server built on Redis with JWT tokens
44
type: application
5-
version: 1.0.0
5+
version: 1.1.0
66
appVersion: '4.1.2'

chart/templates/deployment.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ spec:
1717
{{- include "hydre-auth.selectorLabels" . | nindent 8 }}
1818
app.kubernetes.io/component: auth
1919
spec:
20+
{{- with .Values.imagePullSecrets }}
21+
imagePullSecrets:
22+
{{- toYaml . | nindent 8 }}
23+
{{- end }}
2024
containers:
2125
- name: hydre-auth
2226
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"

chart/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ image:
33
tag: 'latest'
44
pullPolicy: Always
55

6+
imagePullSecrets: []
7+
68
replicaCount: 1
79

810
service:

0 commit comments

Comments
 (0)