Skip to content

Commit

Permalink
Merge pull request #66 from patoarvizu/test_with_tls
Browse files Browse the repository at this point in the history
Set and use TLS cert on test operator manifest
  • Loading branch information
patoarvizu authored Aug 3, 2020
2 parents f1979ec + 2d412d9 commit 66d1fe4
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion test/manifests/global/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

---

Expand Down

0 comments on commit 66d1fe4

Please sign in to comment.