Skip to content

Commit

Permalink
PSMDB-1381 fixed PyKMIP ciphers (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
olexandr-havryliak authored Nov 30, 2023
1 parent c9210ab commit 8690826
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
6 changes: 2 additions & 4 deletions psmdb/psmdb/tests/test_psmdb_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,8 @@ def test_kmip_encryption(host):
else:
logs=host.check_output('cat /var/log/mongo/mongod.log')
print(logs)
journal=host.check_output('journalctl -b --no-pager')
print(journal)
kmip_logs=host.check_output('cat /var/log/pykmip/server.log')
print(kmip_logs)
kmip_logs=host.check_output('cat /var/log/pykmip/server.log')
print(kmip_logs)
assert result.rc == 0, result.stderr

def test_ldap_native(host):
Expand Down
1 change: 0 additions & 1 deletion roles/kmip/templates/pykmip_server.conf
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,4 @@ ca_path=/pykmip_workdir/ca.crt
auth_suite=TLS1.2
enable_tls_client_auth=True
policy_path=/pykmip_workdir/PyKMIP/examples/
tls_cipher_suites= TLS_RSA_WITH_AES_128_CBC_SHA256 TLS_RSA_WITH_AES_256_CBC_SHA256 TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 ECDHE-ECDSA-AES128-GCM-SHA256 ECDHE-RSA-AES128-GCM-SHA256 ECDHE-ECDSA-AES256-GCM-SHA384 ECDHE-RSA-AES256-GCM-SHA384 DHE-RSA-AES128-GCM-SHA256 DHE-RSA-AES256-GCM-SHA384
logging_level=DEBUG

0 comments on commit 8690826

Please sign in to comment.