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

Commit

Permalink
Scaffolding updates (#32)
Browse files Browse the repository at this point in the history
* Updating Scafflding Image Builds

* Config updates

* Change to the scaffolding directory
  • Loading branch information
tommyd450 authored Sep 15, 2023
1 parent 795c9f6 commit 50d1c1b
Showing 1 changed file with 16 additions and 8 deletions.
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

0 comments on commit 50d1c1b

Please sign in to comment.