Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

Commit

Permalink
chore: Pass whether vault is enabled and clusterName to LH and Prow c…
Browse files Browse the repository at this point in the history
…harts

Signed-off-by: Andrew Bayer <andrew.bayer@gmail.com>
  • Loading branch information
abayer authored and jenkins-x-bot committed Jan 20, 2020
1 parent 0124d14 commit 3e3e35e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
9 changes: 9 additions & 0 deletions env/lighthouse/values.tmpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,12 @@ replicaCount: 2

image:
repository: gcr.io/jenkinsxio/lighthouse

vault:
{{- if eq .Requirements.secretStorage "vault" }}
enabled: true
{{- else }}
enabled: false
{{- end }}

clusterName: {{ .Requirements.cluster.clusterName }}
7 changes: 7 additions & 0 deletions env/prow/values.tmpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,11 @@ build:
plank:
enabled: false

vault:
{{- if eq .Requirements.secretStorage "vault" }}
enabled: true
{{- else }}
enabled: false
{{- end }}

clusterName: {{ .Requirements.cluster.clusterName }}

0 comments on commit 3e3e35e

Please sign in to comment.