Skip to content
This repository has been archived by the owner on Oct 3, 2023. It is now read-only.

Scaffolding updates #32

Merged
merged 3 commits into from
Sep 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 16 additions & 8 deletions .github/workflows/image-factory.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:
FULCIO_VER: "v1.4.0"
TRILLIAN_VER: "redhat-v1.5.2"
TRILLIAN_DB_VER: "redhat-v1.5.2"
SCAFFOLDING_VER: "v0.6.4"
SCAFFOLDING_VER: "redhat-v0.6.5"
NET_CAT_VER: "v1.0.0"
TSA_VER: "redhat-v1.1.2"
COSIGN_VER: "redhat-v2.1.1"
Expand Down Expand Up @@ -99,18 +99,13 @@ jobs:
build-scaffold:
runs-on: ubuntu-20.04
steps:
- name: Check out the remote rekor repository
- name: Check out the remote scaffolding repository
uses: actions/checkout@v2
with:
repository: securesign/scaffolding
path: scaffolding
ref: ${{ env.SCAFFOLDING_VER }}

- name: install ko
uses: imjasonh/setup-ko@v0.6
env:
KO_DOCKER_REPO: quay.io/securesign

- name: login to registry.redhat.io
uses: docker/login-action@v1
with:
Expand All @@ -128,7 +123,20 @@ jobs:
- name: build and push scaffolding
run: |
cd scaffolding
KO_DOCKER_REPO=quay.io/securesign KO_DEFAULTBASEIMAGE=registry.access.redhat.com/ubi9/ubi-micro make ko-resolve
podman build -t quay.io/securesign/cloudsqlproxy:${SCAFFOLDING_VER} . -f Dockerfile.cloudsqlproxy
podman push quay.io/securesign/cloudsqlproxy:${SCAFFOLDING_VER}
podman build -t quay.io/securesign/createcerts:${SCAFFOLDING_VER} . -f Dockerfile.createcerts
podman push quay.io/securesign/createcerts:${SCAFFOLDING_VER}
podman build -t quay.io/securesign/createctconfig:${SCAFFOLDING_VER} . -f Dockerfile.createctconfig
podman push quay.io/securesign/createctconfig:${SCAFFOLDING_VER}
podman build -t quay.io/securesign/createdb:${SCAFFOLDING_VER} . -f Dockerfile.createdb
podman push quay.io/securesign/createdb:${SCAFFOLDING_VER}
podman build -t quay.io/securesign/createtree:${SCAFFOLDING_VER} . -f Dockerfile.createtree
podman push quay.io/securesign/createcerts:${SCAFFOLDING_VER}
podman build -t quay.io/securesign/tuf/server:${SCAFFOLDING_VER} . -f Dockerfile.tuf-server
podman push quay.io/securesign/tuf/server:${SCAFFOLDING_VER}



build-tuf:
runs-on: ubuntu-20.04
Expand Down
Loading