Skip to content

Commit

Permalink
updated eps to 0.1.14 and introduced intermediaCertificate map (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucky-lusa authored Jun 20, 2021
1 parent 37b32c6 commit 2c4316b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ data:
key_file: "{{ .Values.tls.mountPath }}/{{ (index .Values.serviceNames .Values.environment).serviceDirectory }}.key"
directory:
database_file: {{ .Values.serviceDirectory.persistentStoragePath }}/service-directory.records
{{ if .Values.tls.intermediateCertificates }}
ca_intermediate_certificate_files:
{{- range (index .Values.tls.intermediateCertificates .Values.environment) }}
- "{{ $.Values.tls.mountPath }}/{{ . }}"
{{- end}}
{{ end }}
ca_certificate_files:
{{- range (index .Values.tls.rootCertificates .Values.environment) }}
- "{{ $.Values.tls.mountPath }}/{{ . }}"
Expand Down
6 changes: 5 additions & 1 deletion infrastructure/iris-gateway/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# production: --set environment=production
environment: undefined

epsRepoTag: v0.1.13
epsRepoTag: v0.1.14

tls:
keystoreSecretName: tls-keystore
Expand All @@ -16,6 +16,10 @@ tls:
production:
- self-signed-ca-x1.crt
- self-signed-ca-x2.crt
intermediateCertificates:
production:
- inter-r1.crt
- inter-r2.crt

nodePorts:
locationsEps: 32323
Expand Down

0 comments on commit 2c4316b

Please sign in to comment.