mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-09-08 15:41:15 +02:00
* ci: composite action that signs and verifies an image with cosign Keyless, by digest, with a verification pass against the calling workflow's own identity right after signing. Signatures use the .sig tag layout rather than the OCI-referrer bundle cosign 3 writes by default, since that is what the verifiers people run today read. Dependabot is pointed at the action so the cosign-installer pin keeps moving. Claude-Session: https://claude.ai/code/session_01A5zMqzaUg1Snur4Yg8xJGa * docker release: sign every variant on both registries The merge job signs each variant's multi-arch index on GHCR and Docker Hub once the tag exists, recursively so the platform images are covered too. latest re-tags the same manifest and inherits the signature. Claude-Session: https://claude.ai/code/session_01A5zMqzaUg1Snur4Yg8xJGa * docker dev: sign the dev image Claude-Session: https://claude.ai/code/session_01A5zMqzaUg1Snur4Yg8xJGa * docker latest: sign a latest rebuilt by hand Claude-Session: https://claude.ai/code/session_01A5zMqzaUg1Snur4Yg8xJGa * docker release: sign the foundationdb image Claude-Session: https://claude.ai/code/session_01A5zMqzaUg1Snur4Yg8xJGa * docker: sign the per-version foundationdb and rocksdb builds They push to the same repository as the releases, so an admission policy that verifies chrislusf/seaweedfs would otherwise reject them. Claude-Session: https://claude.ai/code/session_01A5zMqzaUg1Snur4Yg8xJGa * docker: document image signature verification Claude-Session: https://claude.ai/code/session_01A5zMqzaUg1Snur4Yg8xJGa * ci: pin the actions the signing jobs newly run by commit These run with registry credentials and the OIDC token that signs under the repository's identity, so a retargeted tag upstream must not be able to reach them. Claude-Session: https://claude.ai/code/session_01A5zMqzaUg1Snur4Yg8xJGa * docker latest: pass the dispatch tag through env, not the script Claude-Session: https://claude.ai/code/session_01A5zMqzaUg1Snur4Yg8xJGa * docker: complete Kyverno policy, digest note, identity scope Claude-Session: https://claude.ai/code/session_01A5zMqzaUg1Snur4Yg8xJGa * docker latest: keep the dispatch tag out of the manifest script too The step predates signing, but the job now holds the OIDC identity. Claude-Session: https://claude.ai/code/session_01A5zMqzaUg1Snur4Yg8xJGa * ci: pin every action in the jobs that sign The jobs that hold the OIDC identity run these with registry credentials, so a retargeted tag upstream must not reach them. Claude-Session: https://claude.ai/code/session_01A5zMqzaUg1Snur4Yg8xJGa * docker release: copy and sign the digest the run created, pin the rest crane copy and the signature both resolved the tag, which another publisher could move between the two steps. The index digest is read once, right after it is created, and the Docker Hub copy and both signatures use it. The manual latest rebuild gets the same treatment. The actions in these jobs are pinned to commits, crane to v0.22.0 by checksum, and the sparse checkout no longer keeps the token. Claude-Session: https://claude.ai/code/session_01A5zMqzaUg1Snur4Yg8xJGa * docker latest: the signing job checks out the workflow's own commit The job only assembles and signs manifests, so nothing there needs the source_ref checkout; the local signing action now comes from the same revision as the workflow file that calls it. Claude-Session: https://claude.ai/code/session_01A5zMqzaUg1Snur4Yg8xJGa * docker release: take the index digest from the create result imagetools create writes the descriptor it pushed with --metadata-file (buildx 0.32+, the runners ship 0.36), so the digest no longer comes from re-resolving the tag even within the same step. Claude-Session: https://claude.ai/code/session_01A5zMqzaUg1Snur4Yg8xJGa
120 lines
4.0 KiB
YAML
120 lines
4.0 KiB
YAML
name: "docker: build rocksdb image by version"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
rocksdb_version:
|
|
description: 'RocksDB git tag or branch to build (e.g. v10.10.1)'
|
|
required: true
|
|
default: 'v10.10.1'
|
|
seaweedfs_ref:
|
|
description: 'SeaweedFS git tag, branch, or commit to build'
|
|
required: true
|
|
default: 'master'
|
|
image_tag:
|
|
description: 'Optional Docker tag suffix (defaults to rocksdb_<rocksdb>_seaweedfs_<ref>)'
|
|
required: false
|
|
default: ''
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build-rocksdb-image:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
id-token: write
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v2
|
|
|
|
- name: Prepare Docker tag
|
|
id: tag
|
|
env:
|
|
ROCKSDB_VERSION_INPUT: ${{ inputs.rocksdb_version }}
|
|
SEAWEEDFS_REF_INPUT: ${{ inputs.seaweedfs_ref }}
|
|
CUSTOM_TAG_INPUT: ${{ inputs.image_tag }}
|
|
run: |
|
|
set -euo pipefail
|
|
sanitize() {
|
|
local value="$1"
|
|
value="${value,,}"
|
|
value="${value// /-}"
|
|
value="${value//[^a-z0-9_.-]/-}"
|
|
value="${value#-}"
|
|
value="${value%-}"
|
|
printf '%s' "$value"
|
|
}
|
|
version="${ROCKSDB_VERSION_INPUT}"
|
|
seaweed="${SEAWEEDFS_REF_INPUT}"
|
|
tag="${CUSTOM_TAG_INPUT}"
|
|
if [ -z "$version" ]; then
|
|
echo "RocksDB version input is required." >&2
|
|
exit 1
|
|
fi
|
|
if [ -z "$seaweed" ]; then
|
|
echo "SeaweedFS ref input is required." >&2
|
|
exit 1
|
|
fi
|
|
sanitized_version="$(sanitize "$version")"
|
|
if [ -z "$sanitized_version" ]; then
|
|
echo "Unable to sanitize RocksDB version '$version'." >&2
|
|
exit 1
|
|
fi
|
|
sanitized_seaweed="$(sanitize "$seaweed")"
|
|
if [ -z "$sanitized_seaweed" ]; then
|
|
echo "Unable to sanitize SeaweedFS ref '$seaweed'." >&2
|
|
exit 1
|
|
fi
|
|
if [ -z "$tag" ]; then
|
|
tag="rocksdb_${sanitized_version}_seaweedfs_${sanitized_seaweed}"
|
|
fi
|
|
tag="${tag,,}"
|
|
tag="${tag// /-}"
|
|
tag="${tag//[^a-z0-9_.-]/-}"
|
|
tag="${tag#-}"
|
|
tag="${tag%-}"
|
|
if [ -z "$tag" ]; then
|
|
echo "Resulting Docker tag is empty." >&2
|
|
exit 1
|
|
fi
|
|
echo "docker_tag=$tag" >> "$GITHUB_OUTPUT"
|
|
echo "full_image=chrislusf/seaweedfs:$tag" >> "$GITHUB_OUTPUT"
|
|
echo "seaweedfs_ref=$seaweed" >> "$GITHUB_OUTPUT"
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@96fe6ef7f33517b61c61be40b68a1882f3264fb8 # v1
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v1
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@dbcb813823bdd20940b903addbd779551569679f # v1
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Build and push image
|
|
id: build
|
|
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v2
|
|
with:
|
|
context: ./docker
|
|
push: true
|
|
file: ./docker/Dockerfile.rocksdb_large
|
|
build-args: |
|
|
ROCKSDB_VERSION=${{ inputs.rocksdb_version }}
|
|
BRANCH=${{ inputs.seaweedfs_ref }}
|
|
platforms: linux/amd64
|
|
tags: ${{ steps.tag.outputs.full_image }}
|
|
labels: |
|
|
org.opencontainers.image.title=seaweedfs
|
|
org.opencontainers.image.description=SeaweedFS is a distributed storage system for blobs, objects, files, and data lake, to store and serve billions of files fast!
|
|
org.opencontainers.image.vendor=Chris Lu
|
|
|
|
- name: Sign
|
|
uses: ./.github/actions/sign-image
|
|
with:
|
|
images: chrislusf/seaweedfs@${{ steps.build.outputs.digest }}
|