mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-24 06:59:40 -05:00
ci: add containerized libvirt build workflow (#1130)
* Add libvirt container build workflow * Update release workflow * Update image libvirt base image --------- Signed-off-by: Daniel Weiße <dw@edgeless.systems>
This commit is contained in:
parent
64c4b1f766
commit
f74f589605
35
.github/workflows/build-libvirt-image.yml
vendored
Normal file
35
.github/workflows/build-libvirt-image.yml
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
name: Build and upload libvirt image
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- "release/**"
|
||||||
|
paths:
|
||||||
|
- "cli/internal/libvirt/**"
|
||||||
|
- ".github/workflows/build-libvirt-image.yml"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-qemu-metadata-api:
|
||||||
|
runs-on: ubuntu-22.04
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
packages: write
|
||||||
|
steps:
|
||||||
|
- name: Check out repository
|
||||||
|
id: checkout
|
||||||
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
||||||
|
with:
|
||||||
|
ref: ${{ !github.event.pull_request.head.repo.fork && github.head_ref || '' }}
|
||||||
|
|
||||||
|
- name: Build and upload libvirt container image
|
||||||
|
id: build-and-upload
|
||||||
|
uses: ./.github/actions/build_micro_service
|
||||||
|
with:
|
||||||
|
name: "libvirt"
|
||||||
|
dockerfile: "cli/internal/libvirt/Dockerfile"
|
||||||
|
githubToken: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
cosignPublicKey: ${{ startsWith(github.ref, 'refs/heads/release/v') && secrets.COSIGN_PUBLIC_KEY || secrets.COSIGN_DEV_PUBLIC_KEY }}
|
||||||
|
cosignPrivateKey: ${{ startsWith(github.ref, 'refs/heads/release/v') && secrets.COSIGN_PRIVATE_KEY || secrets.COSIGN_DEV_PRIVATE_KEY }}
|
||||||
|
cosignPassword: ${{ startsWith(github.ref, 'refs/heads/release/v') && secrets.COSIGN_PASSWORD || secrets.COSIGN_DEV_PASSWORD }}
|
106
.github/workflows/build-micro-service-manual.yml
vendored
106
.github/workflows/build-micro-service-manual.yml
vendored
@ -1,106 +0,0 @@
|
|||||||
name: Build micro-service Manual
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
inputs:
|
|
||||||
microService:
|
|
||||||
description: "Name of the micro-service image to build"
|
|
||||||
type: choice
|
|
||||||
options:
|
|
||||||
- "join-service"
|
|
||||||
- "key-service"
|
|
||||||
- "verification-service"
|
|
||||||
- "qemu-metadata-api"
|
|
||||||
- "filebeat-debugd"
|
|
||||||
- "logstash-debugd"
|
|
||||||
required: true
|
|
||||||
default: "join-service"
|
|
||||||
imageTag:
|
|
||||||
description: "Container image tag"
|
|
||||||
required: true
|
|
||||||
default: "manual-build"
|
|
||||||
version:
|
|
||||||
description: "Version of the image to build"
|
|
||||||
required: true
|
|
||||||
default: "0.0.0"
|
|
||||||
ref:
|
|
||||||
type: string
|
|
||||||
description: "Git ref to checkout"
|
|
||||||
required: false
|
|
||||||
release:
|
|
||||||
type: boolean
|
|
||||||
description: "Is this a release build?"
|
|
||||||
required: false
|
|
||||||
default: false
|
|
||||||
workflow_call:
|
|
||||||
inputs:
|
|
||||||
microService:
|
|
||||||
description: "Name of the micro-service image to build"
|
|
||||||
type: string
|
|
||||||
required: true
|
|
||||||
imageTag:
|
|
||||||
type: string
|
|
||||||
description: "Container image tag"
|
|
||||||
required: true
|
|
||||||
version:
|
|
||||||
type: string
|
|
||||||
description: "Version of the image to build"
|
|
||||||
required: true
|
|
||||||
ref:
|
|
||||||
type: string
|
|
||||||
description: "Git ref to checkout"
|
|
||||||
required: false
|
|
||||||
release:
|
|
||||||
type: boolean
|
|
||||||
description: "Is this a release build?"
|
|
||||||
required: true
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-micro-service:
|
|
||||||
runs-on: ubuntu-22.04
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
packages: write
|
|
||||||
steps:
|
|
||||||
- name: Check out repository
|
|
||||||
id: checkout
|
|
||||||
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
||||||
with:
|
|
||||||
ref: ${{ inputs.ref || github.head_ref }}
|
|
||||||
|
|
||||||
- name: Setup Go environment
|
|
||||||
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0
|
|
||||||
with:
|
|
||||||
go-version: "1.19.5"
|
|
||||||
|
|
||||||
# choose the correct Dockerfile depending on what micro-service is being build
|
|
||||||
- name: Set Dockerfile variable
|
|
||||||
id: set-variable
|
|
||||||
run: |
|
|
||||||
case "${{ inputs.microService }}" in
|
|
||||||
"join-service" )
|
|
||||||
echo "microServiceDockerfile=joinservice/Dockerfile" >> "$GITHUB_ENV" ;;
|
|
||||||
"key-service" )
|
|
||||||
echo "microServiceDockerfile=keyservice/Dockerfile" >> "$GITHUB_ENV" ;;
|
|
||||||
"verification-service" )
|
|
||||||
echo "microServiceDockerfile=verify/Dockerfile" >> "$GITHUB_ENV" ;;
|
|
||||||
"qemu-metadata-api" )
|
|
||||||
echo "microServiceDockerfile=hack/qemu-metadata-api/Dockerfile" >> "$GITHUB_ENV" ;;
|
|
||||||
"filebeat-debugd" )
|
|
||||||
echo "microServiceDockerfile=debugd/internal/debugd/logcollector/filebeat/Dockerfile" >> "$GITHUB_ENV" ;;
|
|
||||||
"logstash-debugd" )
|
|
||||||
echo "microServiceDockerfile=debugd/internal/debugd/logcollector/logstash/Dockerfile" >> "$GITHUB_ENV" ;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
- name: Build and upload container image
|
|
||||||
id: build-and-upload
|
|
||||||
uses: ./.github/actions/build_micro_service
|
|
||||||
with:
|
|
||||||
name: ${{ inputs.microService }}
|
|
||||||
projectVersion: ${{ inputs.version }}
|
|
||||||
dockerfile: ${{ env.microServiceDockerfile }}
|
|
||||||
pushTag: ${{ inputs.imageTag }}
|
|
||||||
githubToken: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
cosignPublicKey: ${{ inputs.release && secrets.COSIGN_PUBLIC_KEY || secrets.COSIGN_DEV_PUBLIC_KEY }}
|
|
||||||
cosignPrivateKey: ${{ inputs.release && secrets.COSIGN_PRIVATE_KEY || secrets.COSIGN_DEV_PRIVATE_KEY }}
|
|
||||||
cosignPassword: ${{ inputs.release && secrets.COSIGN_PASSWORD || secrets.COSIGN_DEV_PASSWORD }}
|
|
32
.github/workflows/release.yml
vendored
32
.github/workflows/release.yml
vendored
@ -149,19 +149,33 @@ jobs:
|
|||||||
cosignPassword: ${{ startsWith(github.ref, 'refs/heads/release/v') && secrets.COSIGN_PASSWORD || secrets.COSIGN_DEV_PASSWORD }}
|
cosignPassword: ${{ startsWith(github.ref, 'refs/heads/release/v') && secrets.COSIGN_PASSWORD || secrets.COSIGN_DEV_PASSWORD }}
|
||||||
|
|
||||||
micro-services-metadata:
|
micro-services-metadata:
|
||||||
name: Build micro services
|
name: Build docker images
|
||||||
|
runs-on: ubuntu-22.04
|
||||||
needs: [verify-inputs, prepare-release-branch]
|
needs: [verify-inputs, prepare-release-branch]
|
||||||
uses: ./.github/workflows/build-micro-service-manual.yml
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
packages: write
|
packages: write
|
||||||
secrets: inherit
|
strategy:
|
||||||
with:
|
matrix:
|
||||||
microService: qemu-metadata-api
|
appName:
|
||||||
imageTag: ${{ inputs.version }}
|
[qemu-metadata-api, libvirt]
|
||||||
version: ${{ needs.verify-inputs.outputs.WITHOUT_V }}
|
include:
|
||||||
ref: ${{ needs.verify-inputs.outputs.RELEASE_BRANCH }}
|
- appName: qemu-metadata-api
|
||||||
release: true
|
dockerfile: ./hack/qemu-metadata-api/Dockerfile
|
||||||
|
- appName: libvirt
|
||||||
|
dockerfile: ./cli/internal/libvirt/Dockerfile
|
||||||
|
steps:
|
||||||
|
- name: Build docker image
|
||||||
|
uses: ./.github/actions/build_micro_service
|
||||||
|
with:
|
||||||
|
name: ${{ matrix.appName }}
|
||||||
|
pushTag: ${{ inputs.version }}
|
||||||
|
projectVersion: ${{ needs.verify-inputs.outputs.WITHOUT_V }}
|
||||||
|
dockerfile: ${{ matrix.dockerfile }}
|
||||||
|
githubToken: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
cosignPublicKey: ${{ startsWith(github.ref, 'refs/heads/release/v') && secrets.COSIGN_PUBLIC_KEY || secrets.COSIGN_DEV_PUBLIC_KEY }}
|
||||||
|
cosignPrivateKey: ${{ startsWith(github.ref, 'refs/heads/release/v') && secrets.COSIGN_PRIVATE_KEY || secrets.COSIGN_DEV_PRIVATE_KEY }}
|
||||||
|
cosignPassword: ${{ startsWith(github.ref, 'refs/heads/release/v') && secrets.COSIGN_PASSWORD || secrets.COSIGN_DEV_PASSWORD }}
|
||||||
|
|
||||||
update-versions:
|
update-versions:
|
||||||
name: Update container image versions
|
name: Update container image versions
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM fedora:37@sha256:99aa8919afd1880064ec915dba44cdc5b52808667717f605750329d55006538a AS deploy
|
FROM fedora:37@sha256:3487c98481d1bba7e769cf7bcecd6343c2d383fdd6bed34ec541b6b23ef07664 AS release
|
||||||
RUN dnf -y update && \
|
RUN dnf -y update && \
|
||||||
dnf -y install dnf-plugins-core \
|
dnf -y install dnf-plugins-core \
|
||||||
libvirt-daemon-config-network \
|
libvirt-daemon-config-network \
|
||||||
@ -7,6 +7,7 @@ RUN dnf -y update && \
|
|||||||
swtpm \
|
swtpm \
|
||||||
swtpm-tools \
|
swtpm-tools \
|
||||||
libvirt-client && \
|
libvirt-client && \
|
||||||
|
dnf remove -y python-setuptools && \
|
||||||
dnf clean all
|
dnf clean all
|
||||||
|
|
||||||
# Prevent cgroup issues on Fedora and configure libvirt
|
# Prevent cgroup issues on Fedora and configure libvirt
|
||||||
|
Loading…
Reference in New Issue
Block a user