Skip to content
This repository has been archived by the owner on Jun 21, 2024. It is now read-only.

Commit

Permalink
Merge rusty-hook repo into capture repo.
Browse files Browse the repository at this point in the history
  • Loading branch information
bretthoerner committed Feb 6, 2024
2 parents 9cd1132 + 26672ae commit 74ff834
Show file tree
Hide file tree
Showing 57 changed files with 7,011 additions and 606 deletions.
4 changes: 4 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
.env
.git
.github
docker
target
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DATABASE_URL=postgres://posthog:posthog@localhost:15432/test_database
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
push:
branches:
- 'main'
- "main"

permissions:
packages: write
Expand All @@ -14,7 +14,6 @@ jobs:
name: build and publish capture image
runs-on: buildjet-8vcpu-ubuntu-2204-arm
steps:

- name: Check Out Repo
uses: actions/checkout@v3

Expand Down Expand Up @@ -63,7 +62,7 @@ jobs:
platforms: linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max
build-args: RUST_BACKTRACE=1
build-args: RUST_BACKTRACE=1 BIN=capture-server

- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
68 changes: 68 additions & 0 deletions .github/workflows/docker-hook-api.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: Build hook-api docker image

on:
workflow_dispatch:
push:
branches:
- "main"

permissions:
packages: write

jobs:
build:
name: build and publish hook-api image
runs-on: buildjet-4vcpu-ubuntu-2204-arm
steps:
- name: Check Out Repo
uses: actions/checkout@v3

- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Login to ghcr.io
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/posthog/hook-api
tags: |
type=ref,event=pr
type=ref,event=branch
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=sha
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2

- name: Build and push api
id: docker_build_hook_api
uses: docker/build-push-action@v4
with:
context: ./
file: ./Dockerfile
builder: ${{ steps.buildx.outputs.name }}
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max
build-args: BIN=hook-api

- name: Hook-api image digest
run: echo ${{ steps.docker_build_hook_api.outputs.digest }}
68 changes: 68 additions & 0 deletions .github/workflows/docker-hook-janitor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: Build hook-janitor docker image

on:
workflow_dispatch:
push:
branches:
- "main"

permissions:
packages: write

jobs:
build:
name: build and publish hook-janitor image
runs-on: buildjet-4vcpu-ubuntu-2204-arm
steps:
- name: Check Out Repo
uses: actions/checkout@v3

- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Login to ghcr.io
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/posthog/hook-janitor
tags: |
type=ref,event=pr
type=ref,event=branch
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=sha
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2

- name: Build and push janitor
id: docker_build_hook_janitor
uses: docker/build-push-action@v4
with:
context: ./
file: ./Dockerfile
builder: ${{ steps.buildx.outputs.name }}
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max
build-args: BIN=hook-janitor

- name: Hook-janitor image digest
run: echo ${{ steps.docker_build_hook_janitor.outputs.digest }}
68 changes: 68 additions & 0 deletions .github/workflows/docker-hook-worker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: Build hook-worker docker image

on:
workflow_dispatch:
push:
branches:
- "main"

permissions:
packages: write

jobs:
build:
name: build and publish hook-worker image
runs-on: buildjet-4vcpu-ubuntu-2204-arm
steps:
- name: Check Out Repo
uses: actions/checkout@v3

- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Login to ghcr.io
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/posthog/hook-worker
tags: |
type=ref,event=pr
type=ref,event=branch
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=sha
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2

- name: Build and push worker
id: docker_build_hook_worker
uses: docker/build-push-action@v4
with:
context: ./
file: ./Dockerfile
builder: ${{ steps.buildx.outputs.name }}
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max
build-args: BIN=hook-worker

- name: Hook-worker image digest
run: echo ${{ steps.docker_build_hook_worker.outputs.digest }}
67 changes: 67 additions & 0 deletions .github/workflows/docker-migrator.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: Build hook-migrator docker image

on:
workflow_dispatch:
push:
branches:
- "main"

permissions:
packages: write

jobs:
build:
name: build and publish hook-migrator image
runs-on: buildjet-4vcpu-ubuntu-2204-arm
steps:
- name: Check Out Repo
uses: actions/checkout@v3

- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Login to ghcr.io
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: ghcr.io/posthog/hook-migrator
tags: |
type=ref,event=pr
type=ref,event=branch
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=sha
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2

- name: Build and push migrator
id: docker_build_hook_migrator
uses: docker/build-push-action@v4
with:
context: ./
file: ./Dockerfile.migrate
builder: ${{ steps.buildx.outputs.name }}
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max

- name: Hook-migrator image digest
run: echo ${{ steps.docker_build_hook_migrator.outputs.digest }}
Loading

0 comments on commit 74ff834

Please sign in to comment.