Skip to content

Commit

Permalink
chore: allow insecure chains for dtrust - still secured by certificat…
Browse files Browse the repository at this point in the history
…e pinning in service directory, update eps to 0.1.16
  • Loading branch information
lucky-lusa committed Jun 21, 2021
1 parent d28b9f4 commit 588359f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ data:
{{- end}}
certificate_file: "{{ .Values.tls.mountPath }}/{{ (index .Values.serviceNames .Values.environment).locations }}.crt"
key_file: "{{ .Values.tls.mountPath }}/{{ (index .Values.serviceNames .Values.environment).locations }}.key"
insecure_skip_verify: true
- name: main JSON-RPC client # creates outgoing JSONRPC connections to deliver and receive messages
type: jsonrpc_client
settings:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ data:
{{- end}}
certificate_file: "{{ .Values.tls.mountPath }}/{{ (index .Values.serviceNames .Values.environment).publicProxy }}.crt"
key_file: "{{ .Values.tls.mountPath }}/{{ (index .Values.serviceNames .Values.environment).publicProxy }}.key"
insecure_skip_verify: true
- name: main JSON-RPC client # creates outgoing JSONRPC connections to deliver and receive messages
type: jsonrpc_client
settings:
Expand All @@ -54,6 +55,7 @@ data:
certificate_file: "{{ .Values.tls.mountPath }}/{{ (index .Values.serviceNames .Values.environment).publicProxy }}.crt"
key_file: "{{ .Values.tls.mountPath }}/{{ (index .Values.serviceNames .Values.environment).publicProxy }}.key"
server_name: {{ (index .Values.serviceNames .Values.environment).publicProxy }}
insecure_skip_verify: true
- name: main gRPC client # creates outgoing gRPC connections to deliver and receive messages
type: grpc_client
settings:
Expand All @@ -75,4 +77,3 @@ data:
{{- end}}
certificate_file: "{{ .Values.tls.mountPath }}/{{ (index .Values.serviceNames .Values.environment).publicProxy }}.crt"
key_file: "{{ .Values.tls.mountPath }}/{{ (index .Values.serviceNames .Values.environment).publicProxy }}.key"
verify_client: false
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ data:
{{- end}}
certificate_file: "{{ .Values.tls.mountPath }}/{{ (index .Values.serviceNames .Values.environment).publicProxy }}.crt"
key_file: "{{ .Values.tls.mountPath }}/{{ (index .Values.serviceNames .Values.environment).publicProxy }}.key"
verify_client: false
insecure_skip_verify: true
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ data:
{{- end}}
certificate_file: "{{ .Values.tls.mountPath }}/{{ (index .Values.serviceNames .Values.environment).serviceDirectory }}.crt"
key_file: "{{ .Values.tls.mountPath }}/{{ (index .Values.serviceNames .Values.environment).serviceDirectory }}.key"
insecure_skip_verify: true
directory:
database_file: {{ .Values.serviceDirectory.persistentStoragePath }}/service-directory.records
ca_intermediate_certificate_files:
Expand Down
2 changes: 1 addition & 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.15
epsRepoTag: v0.1.16

tls:
keystoreSecretName: tls-keystore
Expand Down

0 comments on commit 588359f

Please sign in to comment.