From 2d412d901f68ffd6f364e300b3c093441cde986d Mon Sep 17 00:00:00 2001 From: patoarvizu Date: Mon, 3 Aug 2020 12:30:47 -0400 Subject: [PATCH] Set and use TLS cert on test operator manifest --- test/manifests/global/operator.yaml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/test/manifests/global/operator.yaml b/test/manifests/global/operator.yaml index 32821d2..0d810e9 100644 --- a/test/manifests/global/operator.yaml +++ b/test/manifests/global/operator.yaml @@ -212,7 +212,19 @@ spec: - name: VAULT_ADDR value: "https://vault.vault:8200" - name: VAULT_SKIP_VERIFY - value: "true" + value: "false" + - name: VAULT_CAPATH + value: /opt/vault/certs/ca.crt + volumeMounts: + - name: vault-tls + mountPath: /opt/vault/certs + readOnly: true + volumes: + - name: vault-tls + secret: + secretName: vault-tls + defaultMode: 0644 + optional: false ---