-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Security World client v13.4.4
This patch adds support for installing the latest Security World client software. The installation media format for that version is a zipped file containing an ISO. The mechanism for installing the source media was changed to expect this new format. The file is still downloaded to the target host and now unzip is used instead of tar to unarchive the ISO. The client software is now installed on the target host using the RPM files found in the ISO image. Change-Id: If00a8612cd50f492da833033a2ed3256585617bd
- Loading branch information
Showing
8 changed files
with
71 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
--- | ||
thales_install_client: false | ||
thales_configure_rfs: false | ||
thales_client_working_dir: /tmp/thales_client_install | ||
thales_client_working_dir: /tmp/security_world_install | ||
thales_client_gid: 42481 | ||
thales_client_uid: 42481 | ||
thales_client_path: linux/libc6_11/amd64/nfast |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
releasenotes/notes/add-support-for-security-world-v13.4-2cb8688bcc072db1.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
features: | ||
- | | ||
This version adds support for the latest Security World client software | ||
(v13.4.4). Older security world versions are not supported. | ||
deprecations: | ||
- | | ||
The variable `thales_client_tarball_location` has been deprecated. Use | ||
`security_world_iso_zip_url` instead. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[metadata] | ||
name = ansible-role-thales-hsm | ||
summary = ansible-role-thales-hsm - Ansible role to configure Thales HSM clients. | ||
summary = ansible-role-thales-hsm - Ansible role to configure nShileld Connect HSM clients. | ||
description-file = | ||
README.rst | ||
author = TripleO Team | ||
author-email = [email protected] | ||
home-page = https://github.com/dmend/ansible-role-thales-hsm | ||
home-page = https://opendev.org/openstack/ansible-role-thales-hsm | ||
classifier = | ||
License :: OSI Approved :: Apache Software License | ||
Development Status :: 4 - Beta | ||
Development Status :: 5 - Production/Stable | ||
Intended Audience :: Developers | ||
Intended Audience :: System Administrators | ||
Intended Audience :: Information Technology | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,11 @@ | ||
--- | ||
thales_client_working_dir: /tmp/thales_client_install | ||
thales_client_tarball_location: http://myserver.example.com/CipherTools-linux64-dev-12.40.2.tgz | ||
thales_client_tarball_name: CipherTools-linux64-dev-12.40.2.tgz | ||
thales_client_path: linux/libc6_11/amd64/nfast | ||
thales_client_uid: 42481 | ||
thales_client_gid: 42481 | ||
thales_km_data_location: http://myserver.example.com/kmdata.tar.gz | ||
thales_km_data_tarball_name: kmdata.tar.gz | ||
thales_rfs_server_ip_address: 192.168.5.20 | ||
thales_install_client: true | ||
security_world_iso_zip_url: https://myhost.example.com/SecWorld_Lin64-13.4.4.iso.zip | ||
nshield_hsms: | ||
- name: "My HSM 1" | ||
ip: 192.168.1.1 | ||
- name: "My HSM 2" | ||
ip: 192.168.1.1 | ||
thales_rfs_user: admin | ||
thales_rfs_key: RSA Private key in PEM format used to log into RFS server. | ||
thales_rfs_server_ip_address: 192.168.1.10 | ||
thales_bootstrap_client: 192.168.100.1 | ||
thales_client_ips: 192.168.100.1 192.168.100.2 192.168.100.3 |