-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow pkispawn to install only EST subsystem
Deployment script has been modified to skip configuration for EST, it is done differently from the other subsystems. The remaining steps are performed to create and prepare the instance for EST.
- Loading branch information
Showing
5 changed files
with
307 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,243 @@ | ||
name: EST with ds realm on separate instance | ||
|
||
on: workflow_call | ||
|
||
env: | ||
DB_IMAGE: ${{ vars.DB_IMAGE || 'quay.io/389ds/dirsrv' }} | ||
|
||
jobs: | ||
# docs/installation/ca/Installing_CA.md | ||
test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
env: | ||
SHARED: /tmp/workdir/pki | ||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Retrieve PKI images | ||
uses: actions/cache@v4 | ||
with: | ||
key: pki-images-${{ github.sha }} | ||
path: pki-images.tar | ||
|
||
- name: Load PKI images | ||
run: docker load --input pki-images.tar | ||
|
||
- name: Create network | ||
run: docker network create example | ||
|
||
- name: Set up CA DS container | ||
run: | | ||
tests/bin/ds-create.sh \ | ||
--image=${{ env.DB_IMAGE }} \ | ||
--hostname=cads.example.com \ | ||
--password=Secret.123 \ | ||
--network=example \ | ||
--network-alias=cads.example.com \ | ||
cads | ||
- name: Set up CA container | ||
run: | | ||
tests/bin/runner-init.sh \ | ||
--hostname=ca.example.com \ | ||
--network=example \ | ||
--network-alias=ca.example.com \ | ||
ca | ||
- name: Install CA | ||
run: | | ||
docker exec ca pkispawn \ | ||
-f /usr/share/pki/server/examples/installation/ca.cfg \ | ||
-s CA \ | ||
-D pki_ds_url=ldap://cads.example.com:3389 \ | ||
-v | ||
- name: Initialize PKI client | ||
run: | | ||
docker exec ca pki-server cert-export ca_signing --cert-file $SHARED/ca_signing.crt | ||
docker exec ca pki nss-cert-import \ | ||
--cert $SHARED/ca_signing.crt \ | ||
--trust CT,C,C \ | ||
ca_signing | ||
docker exec ca pki pkcs12-import \ | ||
--pkcs12 /root/.dogtag/pki-tomcat/ca_admin_cert.p12 \ | ||
--pkcs12-password Secret.123 | ||
docker exec ca pki info | ||
- name: Create EST server certificates in p12 | ||
run: | | ||
docker exec ca pki nss-cert-request --csr estSSLServer.csr \ | ||
--ext /usr/share/pki/server/certs/sslserver.conf --subject 'CN=est.example.com' | ||
docker exec ca pki ca-cert-request-submit --csr-file estSSLServer.csr --profile caServerCert | tee output | ||
REQUEST_ID=$(sed -n "s/^\s*Request ID:\s*\(\S*\)$/\1/p" output) | ||
docker exec ca pki -n caadmin ca-cert-request-approve $REQUEST_ID --force | tee output | ||
CERT_ID=$(sed -n "s/^\s*Certificate ID:\s*\(\S*\)$/\1/p" output) | ||
docker exec ca pki -n caadmin ca-cert-export --output-file estSSLServer.crt $CERT_ID | ||
docker exec ca pki nss-cert-import --cert estSSLServer.crt sslserver | ||
docker exec ca pk12util -d /root/.dogtag/nssdb -o $SHARED/est_server.p12 -n sslserver -W Secret.123 | ||
- name: Add CA EST user | ||
run: | | ||
docker exec ca pki -n caadmin ca-group-add "EST RA Agents" | ||
docker exec ca pki -n caadmin ca-user-add \ | ||
est-ra-1 --fullName "EST RA 1" --password Secret.est | ||
docker exec ca pki -n caadmin ca-group-member-add "EST RA Agents" est-ra-1 | ||
- name: Configure CA est profile | ||
run: | | ||
docker exec ca pki -n caadmin ca-profile-add \ | ||
--raw /usr/share/pki/ca/profiles/ca/estServiceCert.cfg | ||
docker exec ca pki -n caadmin ca-profile-enable estServiceCert | ||
docker exec ca pki-server restart --wait | ||
- name: Set up EST DS container | ||
run: | | ||
tests/bin/ds-create.sh \ | ||
--image=${{ env.DB_IMAGE }} \ | ||
--hostname=estds.example.com \ | ||
--password=Secret.123 \ | ||
--network=example \ | ||
--network-alias=estds.example.com \ | ||
estds | ||
- name: Create EST users | ||
run: | | ||
docker exec -i estds ldapadd -x -H ldap://estds.example.com:3389 \ | ||
-D "cn=Directory Manager" -w Secret.123 << EOF | ||
dn: dc=est,dc=pki,dc=example,dc=com | ||
objectClass: domain | ||
dc: est | ||
dn: ou=people,dc=est,dc=pki,dc=example,dc=com | ||
ou: people | ||
objectClass: top | ||
objectClass: organizationalUnit | ||
dn: ou=groups,dc=est,dc=pki,dc=example,dc=com | ||
ou: groups | ||
objectClass: top | ||
objectClass: organizationalUnit | ||
dn: uid=est-test-user,ou=people,dc=est,dc=pki,dc=example,dc=com | ||
objectClass: top | ||
objectClass: person | ||
objectClass: organizationalPerson | ||
objectClass: inetOrgPerson | ||
uid: est-test-user | ||
sn: EST TEST USER | ||
cn: EST TEST USER | ||
userPassword: Secret.123 | ||
dn: cn=estclient,ou=groups,dc=est,dc=pki,dc=example,dc=com | ||
objectClass: top | ||
objectClass: groupOfUniqueNames | ||
cn: estclient | ||
uniqueMember: uid=est-test-user,ou=People,dc=est,dc=pki,dc=example,dc=com | ||
EOF | ||
- name: Set up EST container | ||
run: | | ||
tests/bin/runner-init.sh \ | ||
--hostname=est.example.com \ | ||
--network=example \ | ||
--network-alias=est.example.com \ | ||
est | ||
- name: Install EST | ||
run: | | ||
docker exec est pkispawn \ | ||
-f /usr/share/pki/server/examples/installation/est.cfg \ | ||
-s EST \ | ||
-D est_realm_url=ldap://estds.example.com:3389 \ | ||
-D pki_ca_uri=https://ca.example.com:8443 \ | ||
-D pki_server_pkcs12_path=$SHARED/est_server.p12 \ | ||
-D pki_server_pkcs12_password=Secret.123 \ | ||
-v | ||
- name: Test CA certs | ||
run: | | ||
docker exec est curl -o cacert.p7 -k https://est.example.com:8443/.well-known/est/cacerts | ||
docker exec est openssl base64 -d --in cacert.p7 --out cacert.p7.der | ||
docker exec est openssl pkcs7 --in cacert.p7.der -inform DER -print_certs -out cacert.pem | ||
docker exec est openssl x509 -in cacert.pem -text -noout | tee actual | ||
docker exec est openssl x509 -in $SHARED/ca_signing.crt -text -noout | tee expected | ||
diff expected actual | ||
- name: Install est client | ||
run: | | ||
docker exec est dnf copr enable -y @pki/libest | ||
docker exec est dnf install -y libest | ||
- name: Enroll certificate | ||
run: | | ||
docker exec -e EST_OPENSSL_CACERT=cacert.pem est estclient -e -s est.example.com -p 8443 \ | ||
--common-name test.example.com -o . -u est-test-user -h Secret.123 | ||
docker exec est openssl base64 -d --in cert-0-0.pkcs7 --out cert-0-0.pkcs7.der | ||
docker exec est openssl pkcs7 -in cert-0-0.pkcs7.der -inform DER -print_certs -out cert.pem | ||
docker exec est openssl x509 -in cert.pem -subject -noout | tee actual | ||
echo "subject=CN=test.example.com" > expected | ||
diff expected actual | ||
- name: Remove EST | ||
run: | | ||
docker exec est pki-server est-undeploy --wait | ||
docker exec est pki-server est-remove | ||
- name: Remove CA | ||
run: docker exec ca pkidestroy -i pki-tomcat -s CA -v | ||
|
||
- name: Check CA DS server systemd journal | ||
if: always() | ||
run: | | ||
docker exec cads journalctl -x --no-pager -u [email protected] | ||
- name: Check CA DS container logs | ||
if: always() | ||
run: | | ||
docker logs cads | ||
- name: Check CA PKI server systemd journal | ||
if: always() | ||
run: | | ||
docker exec ca journalctl -x --no-pager -u [email protected] | ||
- name: Check EST PKI server systemd journal | ||
if: always() | ||
run: | | ||
docker exec est journalctl -x --no-pager -u [email protected] | ||
- name: Check CA debug log | ||
if: always() | ||
run: | | ||
docker exec ca find /var/lib/pki/pki-tomcat/logs/ca -name "debug.*" -exec cat {} \; | ||
- name: Check EST debug log | ||
if: always() | ||
run: | | ||
docker exec est find /var/lib/pki/pki-tomcat/logs/est -name "debug.*" -exec cat {} \; | ||
- name: Gather artifacts | ||
if: always() | ||
run: | | ||
tests/bin/ds-artifacts-save.sh cads | ||
tests/bin/ds-artifacts-save.sh estds | ||
tests/bin/pki-artifacts-save.sh ca | ||
tests/bin/pki-artifacts-save.sh est | ||
continue-on-error: true | ||
|
||
- name: Upload artifacts | ||
if: always() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: est-ds-separate | ||
path: /tmp/artifacts |
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
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