Skip to content

Commit b763b36

Browse files
rekor-tiles: Update conditional for setting volume keys (#1104)
When reviewing the TesseraCT helm chart, I realized I had forgotten to update the template conditionals that add volume and volumeMount keys for gRPC and witnessing. This hasn't been an issue because some signer must always be provided, but this is good for completeness. Signed-off-by: Hayden <[email protected]> Co-authored-by: Hayden <[email protected]>
1 parent f6a9afa commit b763b36

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

charts/rekor-tiles/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: rekor-tiles
33
description: Part of the sigstore project, Rekor v2 (Rekor on tiles) is a signature transparency log
44
type: application
5-
version: 1.0.4
5+
version: 1.0.5
66
appVersion: "2.0.1"
77
keywords:
88
- security

charts/rekor-tiles/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<!-- This README.md is generated. Please edit README.md.gotmpl -->
44

5-
![Version: 1.0.4](https://img.shields.io/badge/Version-1.0.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.0.1](https://img.shields.io/badge/AppVersion-2.0.1-informational?style=flat-square)
5+
![Version: 1.0.5](https://img.shields.io/badge/Version-1.0.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.0.1](https://img.shields.io/badge/AppVersion-2.0.1-informational?style=flat-square)
66

77
Part of the sigstore project, Rekor v2 (Rekor on tiles) is a signature transparency log
88

charts/rekor-tiles/templates/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ spec:
7171
{{- toYaml .Values.lifecycle | nindent 12 }}
7272
resources:
7373
{{- toYaml .Values.resources | nindent 12 }}
74-
{{- if or .Values.server.signer.file .Values.server.signer.tink }}
74+
{{- if or .Values.server.signer.file .Values.server.grpcSvcTLS .Values.server.signer.tink .Values.server.witnessing }}
7575
volumeMounts:
7676
{{- end }}
7777
{{- if .Values.server.signer.file }}
@@ -93,7 +93,7 @@ spec:
9393
mountPath: /etc/witness-config
9494
{{- end }}
9595
terminationGracePeriodSeconds: {{ .Values.terminationGracePeriodSeconds }}
96-
{{- if or .Values.server.signer.file .Values.server.signer.tink }}
96+
{{- if or .Values.server.signer.file .Values.server.grpcSvcTLS .Values.server.signer.tink .Values.server.witnessing }}
9797
volumes:
9898
{{- end }}
9999
{{- if ((.Values.server.signer.file).secret).name }}

0 commit comments

Comments
 (0)