Skip to content

Commit

Permalink
Merge pull request #6 from ComposableFi/indexer-image-secret
Browse files Browse the repository at this point in the history
Indexer image secret
  • Loading branch information
lbd-cloud authored Jun 10, 2024
2 parents 5ff90ee + ba9ad2f commit e8a9125
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/indexer/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: indexer
description: A Helm chart of Indexer for Kubernetes
type: application
version: 0.1.2
version: 0.1.3
appVersion: "1.16.0"
6 changes: 6 additions & 0 deletions charts/indexer/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ spec:
serviceAccountName: {{ include "indexer.serviceAccountName" . }}
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}

{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}

containers:
- name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
Expand Down
4 changes: 3 additions & 1 deletion charts/indexer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ image:
tag: latest
pullPolicy: IfNotPresent

imagePullSecrets: []

# Service configuration
service:
type: ClusterIP
Expand Down Expand Up @@ -55,4 +57,4 @@ nodeSelector: {}

tolerations: []

affinity: {}
affinity: {}

0 comments on commit e8a9125

Please sign in to comment.