Skip to content

Commit

Permalink
Add conduit docker image and release (#32)
Browse files Browse the repository at this point in the history
* Add conduit docker image and release
* add helm chart build
  • Loading branch information
lyuboxa authored Oct 2, 2024
1 parent 3c12f12 commit a0ca073
Show file tree
Hide file tree
Showing 2 changed files with 80 additions and 1 deletion.
79 changes: 79 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
name: Release
on:
push:
tags:
- v*

permissions:
contents: write

jobs:
build-push-helm-chart:
name: Build and push Helm chart pkg
runs-on: ubuntu-latest
env:
BUILD_DIR: ${{ github.workspace }}/charts/build"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
repository: ${{ github.repository }}
ref: gh-pages
path: tmp/charts
- name: Package Helm Chart
run: |
mkdir -p ${BUILD_DIR}
scripts/package-chart charts/conduit-operator ${BUILD_DIR} ${BUILD_DIR}/index.yaml
ls -all ${BUILD_DIR}
cat ${BUILD_DIR}/index.yaml"
- name: Release Helm Chart
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ${BUILD_DIR}
keep_files: true

build-push-docker-image:
name: Build and push Docker image
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Log in to the Container registry
uses: docker/[email protected]
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/[email protected]
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=semver,pattern={{raw}}
type=raw,value=latest-nightly,enable=${{ contains(github.ref, '-nightly') }}
type=semver,pattern=v{{major}}.{{minor}},enable=${{ !contains(github.ref, '-nightly') }}
type=semver,pattern=v{{major}},enable=${{ !contains(github.ref, '-nightly') && !startsWith(github.ref, 'refs/tags/v0.') }}
labels: |
maintainer=ConduitIO
org.opencontainers.image.title=Conduit-Operator
org.opencontainers.image.description=Conduit Operator manages Conduit instances on Kubernetes
org.opencontainers.image.vendor=ConduitIO
- name: Build and push Docker image
uses: docker/[email protected]
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

2 changes: 1 addition & 1 deletion charts/conduit-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: conduit-operator
description: A Helm chart for the Conduit manager
description: A Helm chart for the Conduit data stream tool
type: application
version: 0.1.0
appVersion: "0.1.0"

0 comments on commit a0ca073

Please sign in to comment.