summaryrefslogtreecommitdiffstats
path: root/k8s/tests/test_k8sclient_deploy.py
diff options
context:
space:
mode:
authorPiotr Marcinkiewicz <piotr.marcinkiewicz@nokia.com>2020-09-29 12:59:08 +0200
committerPiotr Marcinkiewicz <piotr.marcinkiewicz@nokia.com>2020-09-30 14:10:41 +0200
commit616e85c8a4430591257165eac39534501992d4bd (patch)
tree6361682d92d3227f762d9254ab322d00044e41db /k8s/tests/test_k8sclient_deploy.py
parent86c9f3ac9a19ffba6ef9ca92ac088a0c24abcb3f (diff)
[k8splugin] Update plugin to use OOM CertService
- Replace AAF CertService with OOM CertService - Rename truststore merger init container to cert post processor Issue-ID: OOM-2526 Signed-off-by: Piotr Marcinkiewicz <piotr.marcinkiewicz@nokia.com> Change-Id: If3aecb9c62970e338c694ff7ae2dadf94c4daa8b
Diffstat (limited to 'k8s/tests/test_k8sclient_deploy.py')
-rw-r--r--k8s/tests/test_k8sclient_deploy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/k8s/tests/test_k8sclient_deploy.py b/k8s/tests/test_k8sclient_deploy.py
index a325b68..b710a79 100644
--- a/k8s/tests/test_k8sclient_deploy.py
+++ b/k8s/tests/test_k8sclient_deploy.py
@@ -25,7 +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
+from common import verify_cert_post_processor
def test_deploy_full_tls(mockk8sapi):
''' Deploy component with a full TLS configuration, to act as a server '''
@@ -68,6 +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)
+ verify_cert_post_processor(dep)