From 8bf43fdc2ca725b32a54ee1f77a14be0459b3e01 Mon Sep 17 00:00:00 2001 From: Eric Van Hensbergen Date: Sun, 6 Nov 2022 21:47:28 -0600 Subject: [PATCH] Switch Docker CI from gitlab to github Adds buildx signing and helm chart publication. Signed-off-by: Eric Van Hensbergen --- .github/workflows/docker-buildx.yml | 104 ++++++++++++++++++ .github/workflows/helm.yml | 46 ++++++++ .gitlab-ci.yml | 6 - .../smarter-device-manager}/.helmignore | 0 .../smarter-device-manager}/Chart.yaml | 2 +- .../smarter-device-manager}/README.md | 0 .../templates/common.yaml | 0 .../templates/configmap.yaml | 0 .../smarter-device-manager}/values.yaml | 0 9 files changed, 151 insertions(+), 7 deletions(-) create mode 100644 .github/workflows/docker-buildx.yml create mode 100644 .github/workflows/helm.yml delete mode 100644 .gitlab-ci.yml rename {chart => charts/smarter-device-manager}/.helmignore (100%) rename {chart => charts/smarter-device-manager}/Chart.yaml (98%) rename {chart => charts/smarter-device-manager}/README.md (100%) rename {chart => charts/smarter-device-manager}/templates/common.yaml (100%) rename {chart => charts/smarter-device-manager}/templates/configmap.yaml (100%) rename {chart => charts/smarter-device-manager}/values.yaml (100%) diff --git a/.github/workflows/docker-buildx.yml b/.github/workflows/docker-buildx.yml new file mode 100644 index 0000000..71e0b2a --- /dev/null +++ b/.github/workflows/docker-buildx.yml @@ -0,0 +1,104 @@ +name: Docker Image BuildX CI and Publish + +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +on: + schedule: + - cron: '19 16 * * *' + push: + branches: [ "main" ] + # Publish semver tags as releases. + tags: [ 'v*.*.*' ] + pull_request: + branches: [ "main" ] + workflow_dispatch: + +env: + # Use docker.io for Docker Hub if empty + REGISTRY: ghcr.io + # github.repository as / + IMAGE_NAME: ${{ github.repository }} + +jobs: + build: + + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + # This is used to complete the identity challenge + # with sigstore/fulcio when running outside of PRs. + id-token: write + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + # Install the cosign tool except on PR + # https://github.com/sigstore/cosign-installer + - name: Install cosign + if: github.event_name != 'pull_request' + uses: sigstore/cosign-installer@f3c664df7af409cb4873aa5068053ba9d61a57b6 #v2.6.0 + with: + cosign-release: 'v1.13.1' + + - + # Add support for more platforms with QEMU (optional) + # https://github.com/docker/setup-qemu-action + name: Set up QEMU + uses: docker/setup-qemu-action@v2 + + # Login against a Docker registry except on PR + # https://github.com/docker/login-action + - name: Log into registry ${{ env.REGISTRY }} + if: github.event_name != 'pull_request' + uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + # Extract metadata (tags, labels) for Docker + # https://github.com/docker/metadata-action + - name: Extract Docker metadata + id: meta + uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38 + with: + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + + # Workaround: https://github.com/docker/build-push-action/issues/461 + - name: Setup Docker buildx + uses: docker/setup-buildx-action@v2.2.1 + with: + platforms: linux/amd64,linux/arm64,linux/arm/v7 + # Build and push Docker image with Buildx (don't push on PR) + # https://github.com/docker/build-push-action + - name: Build and push Docker image + id: build-and-push + uses: docker/build-push-action@v3 + with: + platforms: linux/amd64,linux/arm64,linux/arm/v7 + context: . + push: ${{ github.event_name != 'pull_request' }} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + cache-from: type=gha + cache-to: type=gha,mode=max + #- name: Build + # run: | + # docker build --platform "linux/amd64,linux/arm64" --push . --file Dockerfile --tag ${{ steps.meta.outputs.tags }} --tag ${{ steps.meta.outputs.labels }} # will run buil + + # Sign the resulting Docker image digest except on PRs. + # This will only write to the public Rekor transparency log when the Docker + # repository is public to avoid leaking data. If you would like to publish + # transparency data even for private images, pass --force to cosign below. + # https://github.com/sigstore/cosign + - name: Sign the published Docker image + if: ${{ github.event_name != 'pull_request' }} + env: + COSIGN_EXPERIMENTAL: "true" + # This step uses the identity token to provision an ephemeral certificate + # against the sigstore community Fulcio instance. + run: echo "${{ steps.meta.outputs.tags }}" | xargs -I {} cosign sign {}@${{ steps.build-and-push.outputs.digest }} diff --git a/.github/workflows/helm.yml b/.github/workflows/helm.yml new file mode 100644 index 0000000..519e947 --- /dev/null +++ b/.github/workflows/helm.yml @@ -0,0 +1,46 @@ +# release.yaml +name: Release Charts + +on: + push: + branches: + - main + +jobs: + release: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + fetch-depth: 0 + + - name: Configure Git + run: | + git config user.name "$GITHUB_ACTOR" + git config user.email "$GITHUB_ACTOR@users.noreply.github.com" + + # Optional step if GPG signing is used + - name: Prepare GPG key + run: | + gpg_dir=.cr-gpg + mkdir "$gpg_dir" + keyring="$gpg_dir/secring.gpg" + base64 -d <<< "$GPG_KEYRING_BASE64" > "$keyring" + passphrase_file="$gpg_dir/passphrase" + echo "$GPG_PASSPHRASE" > "$passphrase_file" + echo "CR_PASSPHRASE_FILE=$passphrase_file" >> "$GITHUB_ENV" + echo "CR_KEYRING=$keyring" >> "$GITHUB_ENV" + echo "sign: true" > cr.yaml + echo "key: Smarter Project" >> cr.yaml + env: + GPG_KEYRING_BASE64: "${{ secrets.GPG_KEYRING_BASE64 }}" + GPG_PASSPHRASE: "${{ secrets.GPG_PASSPHRASE }}" + + - name: Run chart-releaser + uses: helm/chart-releaser-action@v1.4.1 + with: + config: cr.yaml + env: + CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" + diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 4cee0e1..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,6 +0,0 @@ -include: - - project: 'ericvh/gitlab-ci-arm-template' - file: '/.gitlab-ci.yml' - -variables: - CI_BUILDX_ARCHS: "linux/amd64,linux/arm64" diff --git a/chart/.helmignore b/charts/smarter-device-manager/.helmignore similarity index 100% rename from chart/.helmignore rename to charts/smarter-device-manager/.helmignore diff --git a/chart/Chart.yaml b/charts/smarter-device-manager/Chart.yaml similarity index 98% rename from chart/Chart.yaml rename to charts/smarter-device-manager/Chart.yaml index 96a8866..e4f2d2f 100644 --- a/chart/Chart.yaml +++ b/charts/smarter-device-manager/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: smarter-device-manager description: smarter-device-manager chart for SMARTER edge devices home: https://gitlab.com/smarter-project/smarter-device-manager/helm -version: 0.0.3 +version: 0.0.4 appVersion: v1.20.11 kubeVersion: ">=1.16.0-0" keywords: diff --git a/chart/README.md b/charts/smarter-device-manager/README.md similarity index 100% rename from chart/README.md rename to charts/smarter-device-manager/README.md diff --git a/chart/templates/common.yaml b/charts/smarter-device-manager/templates/common.yaml similarity index 100% rename from chart/templates/common.yaml rename to charts/smarter-device-manager/templates/common.yaml diff --git a/chart/templates/configmap.yaml b/charts/smarter-device-manager/templates/configmap.yaml similarity index 100% rename from chart/templates/configmap.yaml rename to charts/smarter-device-manager/templates/configmap.yaml diff --git a/chart/values.yaml b/charts/smarter-device-manager/values.yaml similarity index 100% rename from chart/values.yaml rename to charts/smarter-device-manager/values.yaml