summaryrefslogtreecommitdiffstats
path: root/k8s/tests/test_k8sclient_deploy.py
diff options
context:
space:
mode:
authorJan Malkiewicz <jan.malkiewicz@nokia.com>2020-08-19 15:49:10 +0200
committerJan Malkiewicz <jan.malkiewicz@nokia.com>2020-08-28 09:00:24 +0200
commit92f74ae2a3506cea96635e922c0217dc1ef96bb9 (patch)
tree054b49c3216c5075d8e3ffb40b7c502157b67f64 /k8s/tests/test_k8sclient_deploy.py
parent43f0c2c84a1d1c0e9dd49e41c748f56b5820760b (diff)
Add init container support for truststore merger.
Issue-ID: DCAEGEN2-2253 Signed-off-by: Jan Malkiewicz <jan.malkiewicz@nokia.com> Change-Id: I98f27834b36cad333728d41ec079b86a090e77f3
Diffstat (limited to 'k8s/tests/test_k8sclient_deploy.py')
-rw-r--r--k8s/tests/test_k8sclient_deploy.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/k8s/tests/test_k8sclient_deploy.py b/k8s/tests/test_k8sclient_deploy.py
index 30490a6..a325b68 100644
--- a/k8s/tests/test_k8sclient_deploy.py
+++ b/k8s/tests/test_k8sclient_deploy.py
@@ -25,6 +25,7 @@ import pytest
from common import do_deploy
from common import do_deploy_ext
from common import verify_external_cert
+from common import verify_truststore_merger
def test_deploy_full_tls(mockk8sapi):
''' Deploy component with a full TLS configuration, to act as a server '''
@@ -67,3 +68,6 @@ def test_deploy_external_cert(mockk8sapi):
# Make sure all of the external init container parameters are correct
verify_external_cert(dep)
+ verify_truststore_merger(dep)
+
+