Skip to content

Commit

Permalink
Merge pull request #698 from AmericanAirlines/Add-missing-rekor-image…
Browse files Browse the repository at this point in the history
…pullsecrets

Add missing rekor imagePullSecrets
  • Loading branch information
bobcallaway authored Jan 31, 2024
2 parents e079e6a + 9027bbe commit baf04c8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/rekor/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Part of the sigstore project, Rekor is a timestamping server and tr

type: application

version: 1.3.16
version: 1.3.17
appVersion: 1.3.4

keywords:
Expand Down
2 changes: 1 addition & 1 deletion charts/rekor/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# rekor

![Version: 1.3.16](https://img.shields.io/badge/Version-1.3.16-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.3.4](https://img.shields.io/badge/AppVersion-1.3.4-informational?style=flat-square)
![Version: 1.3.17](https://img.shields.io/badge/Version-1.3.17-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.3.4](https://img.shields.io/badge/AppVersion-1.3.4-informational?style=flat-square)

Part of the sigstore project, Rekor is a timestamping server and transparency log for storing signatures, as well as an API based server for validation

Expand Down
4 changes: 4 additions & 0 deletions charts/rekor/templates/backfillredis/backfill-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ spec:
spec:
serviceAccountName: {{ template "rekor.serviceAccountName.server" . }}
restartPolicy: Never
{{- if .Values.imagePullSecrets }}
imagePullSecrets:
{{ toYaml .Values.imagePullSecrets | indent 8 }}
{{- end }}
containers:
- name: {{ template "rekor.backfillredis.fullname" . }}
image: "{{ template "rekor.image" .Values.backfillredis.image }}"
Expand Down
4 changes: 4 additions & 0 deletions charts/rekor/templates/server/createtree-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ spec:
serviceAccountName: {{ template "rekor.serviceAccountName.createtree" . }}
restartPolicy: Never
automountServiceAccountToken: true
{{- if .Values.imagePullSecrets }}
imagePullSecrets:
{{ toYaml .Values.imagePullSecrets | indent 8 }}
{{- end }}
containers:
- name: {{ template "rekor.createtree.fullname" . }}
image: "{{ template "rekor.image" .Values.createtree.image }}"
Expand Down

0 comments on commit baf04c8

Please sign in to comment.