Skip to content

Commit

Permalink
Add CSR job in IPA cline test
Browse files Browse the repository at this point in the history
Add a check of CSR between CA master and clone.
  • Loading branch information
fmarco76 committed Oct 16, 2023
1 parent 436f01b commit d4f81ec
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ipa-clone-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,16 @@ jobs:
# renewal config is maintained by IPA, so there should be no change in PKI
diff CS.cfg.secondary.orig CS.cfg.secondary.after-renewal-update
- name: Check CA CSR copied correctly
run: |
docker cp primary:/etc/pki/pki-tomcat/certs primary-certs
docker cp secondary:/etc/pki/pki-tomcat/certs secondary-certs
diff primary-certs/ca_signing.csr secondary-certs/ca_signing.csr
diff primary-certs/ca_ocsp_signing.csr secondary-certs/ca_ocsp_signing.csr
diff primary-certs/ca_audit_signing.csr secondary-certs/ca_audit_signing.csr
diff primary-certs/subsystem.csr secondary-certs/subsystem.csr
- name: Check CRL generation config
run: |
docker exec primary ipa-crlgen-manage status | tee output
Expand Down

0 comments on commit d4f81ec

Please sign in to comment.