Skip to content

Commit

Permalink
Add KRA container
Browse files Browse the repository at this point in the history
The Dockerfile has been updated to define a new KRA container.

A new test has been added to create CA and KRA containers, then
verify key archival and recovery.
  • Loading branch information
edewata committed May 23, 2024
1 parent bef74bf commit ab8f2e8
Show file tree
Hide file tree
Showing 7 changed files with 1,013 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,27 @@ jobs:
cache-from: type=local,src=/tmp/.buildx-cache
outputs: type=docker

- name: Build pki-kra image
uses: docker/build-push-action@v5
with:
context: .
build-args: |
BASE_IMAGE=${{ env.BASE_IMAGE }}
COPR_REPO=${{ env.COPR_REPO }}
tags: pki-kra
target: pki-kra
cache-from: type=local,src=/tmp/.buildx-cache
outputs: type=docker

- name: Save PKI images
run: |
docker images
docker save -o pki-images.tar pki-dist pki-runner pki-server pki-ca
docker save -o pki-images.tar \
pki-dist \
pki-runner \
pki-server \
pki-ca \
pki-kra
- name: Store PKI images
uses: actions/cache@v4
Expand Down
Loading

0 comments on commit ab8f2e8

Please sign in to comment.