Skip to content

Commit ddbb554

Browse files
authored
[v1] docker image for mesh-serve (#7283)
1 parent 177851e commit ddbb554

26 files changed

+621
-6554
lines changed

.changeset/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"access": "restricted",
66
"baseBranch": "master",
77
"updateInternalDependencies": "patch",
8-
"ignore": ["website", "@graphql-mesh/container"],
8+
"ignore": ["website"],
99
"changelog": ["@changesets/changelog-github", { "repo": "urigo/graphql-mesh" }],
1010
"snapshot": {
1111
"useCalculatedVersion": true,

.dockerignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.gitignore

.github/workflows/release.yml

+27-78
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
name: release
2+
23
on:
34
push:
45
branches:
56
- master
67
pull_request:
8+
79
jobs:
810
stable:
911
if: github.ref == 'refs/heads/master'
@@ -16,101 +18,48 @@ jobs:
1618
githubToken: ${{ secrets.GITHUB_TOKEN }}
1719
npmToken: ${{ secrets.NODE_AUTH_TOKEN }}
1820

19-
docker-build:
20-
# disable publishing images on master until #7283 lands (has better image that should be used instead)
21-
if: false
21+
docker:
2222
runs-on: ubuntu-latest
23+
env:
24+
VERSION: ${{ github.ref == 'refs/heads/master' && 'latest' || github.sha }} # TODO: actual versions to publish
2325
steps:
2426
- name: checkout
2527
uses: actions/checkout@v4
26-
27-
- name: Set up Docker Buildx
28+
- name: set up docker buildx
2829
uses: docker/setup-buildx-action@v3
29-
30-
- name: Create Docker Buildx builder
31-
run: docker buildx create --name mybuilder --use
32-
33-
- name: Inspect Docker Buildx builder
34-
run: docker buildx inspect --bootstrap
35-
36-
- name: Log in to GitHub Container Registry
37-
uses: docker/login-action@v3
30+
- name: log in to ghcr
31+
uses: docker/login-action@v2
3832
with:
3933
registry: ghcr.io
4034
username: ${{ github.actor }}
4135
password: ${{ secrets.GITHUB_TOKEN }}
42-
43-
- name: Build Docker image for local testing
44-
id: build-single
45-
uses: docker/build-push-action@v6
36+
- name: setup env
37+
uses: the-guild-org/shared-config/setup@main
4638
with:
47-
context: ./docker
48-
push: false
49-
load: true
50-
platforms: linux/amd64
51-
tags: ghcr.io/ardatan/mesh-serve:test
52-
53-
- name: Use Node
54-
uses: actions/setup-node@v4
55-
with:
56-
node-version: 18
57-
cache: 'yarn'
58-
59-
- name: Install dependencies
60-
run: yarn
61-
62-
- name: Run E2E tests
63-
run: yarn test:e2e -- docker-image
64-
65-
- name: Prepare Bake inputs
66-
id: docker-bake-inputs
39+
nodeVersion: 18
40+
packageManagerVersion: modern
41+
- name: prepare
42+
run: yarn prebuild
43+
- name: bundle
44+
run: yarn bundle
45+
- name: version
6746
run: |
68-
targets=$(docker buildx bake -f docker/docker.hcl --print default | jq -r '.group.default.targets[]')
69-
input_set=""
70-
first=0
71-
72-
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
73-
74-
echo "set<<$EOF" >> "$GITHUB_ENV"
75-
for target in $targets
76-
do
77-
echo "$target.cache-from=type=gha,ignore-error=true,scope=$GITHUB_REF-$target" >> "$GITHUB_ENV"
78-
echo "$target.cache-to=type=gha,ignore-error=true,mode=max,scope=$GITHUB_REF-$target" >> "$GITHUB_ENV"
79-
done
80-
echo "$EOF" >> "$GITHUB_ENV"
81-
82-
- name: Build docker images
83-
timeout-minutes: 360
84-
id: docker-bake
85-
env:
86-
DOCKER_REGISTRY: ghcr.io/ardatan/
87-
COMMIT_SHA: ${{ github.sha }}
88-
BRANCH_NAME: ${{ github.ref_name }}
89-
BUILD_TYPE: 'publish'
90-
PWD: ${{ github.workspace }}
91-
BUILD_STABLE: ${{ github.event_name == 'push' && '1' || '' }}
92-
uses: docker/bake-action@v5
47+
echo "VERSION=${{ github.ref == 'refs/heads/master' && 'latest' || '$(git rev-parse --short HEAD)' }}" >> $GITHUB_ENV
48+
- name: bake and push
49+
uses: docker/bake-action@v4
9350
with:
9451
provenance: false
95-
push: true
96-
files: docker/docker.hcl
97-
targets: default
9852
set: |
99-
${{ steps.docker-bake-inputs.outputs.set }}
100-
graphql-mesh.args.COMMIT_SHA=${{ github.sha }}
101-
graphql-mesh.args.BRANCH_NAME=${{ github.ref_name }}
102-
103-
- name: Log out of GitHub Container Registry
104-
run: docker logout ghcr.io
105-
106-
- name: Comment on PR with Docker image
53+
*.cache-from=type=gha
54+
*.cache-to=type=gha,mode=max
55+
push: true
56+
- name: comment on pr
10757
if: github.event_name == 'pull_request'
10858
uses: marocchino/sticky-pull-request-comment@v2
10959
with:
110-
token: ${{ secrets.GH_API_TOKEN }}
111-
header: Docker Image
60+
header: Docker Images
11261
message: |
113-
The Docker image for this PR is available at:
62+
Published images for this PR are available at:
11463
```
115-
ghcr.io/ardatan/mesh-serve:${{ github.sha }}
64+
ghcr.io/ardatan/mesh-serve:${{ env.VERSION }}
11665
```

.github/workflows/tests.yml

+19-4
Original file line numberDiff line numberDiff line change
@@ -345,13 +345,28 @@ jobs:
345345
steps:
346346
- name: checkout
347347
uses: actions/checkout@v4
348-
- uses: the-guild-org/shared-config/setup@main
349-
name: setup env
348+
- name: set up docker buildx
349+
uses: docker/setup-buildx-action@v3
350+
- name: setup env
351+
uses: the-guild-org/shared-config/setup@main
350352
with:
351353
nodeVersion: ${{matrix.node-version}}
352354
packageManagerVersion: modern
353-
- name: Prepare for build
355+
- name: prepare
354356
run: yarn prebuild
357+
# we only bundle and bake to speed up e2es and avoid timeouts
358+
- name: bundle
359+
run: yarn bundle
360+
- name: bake
361+
uses: docker/bake-action@v4
362+
with:
363+
set: |
364+
*.platform=linux/amd64
365+
*.cache-from=type=gha
366+
*.cache-to=type=gha,mode=max
367+
# we must load so that the e2e tests can use the cached image
368+
# also, in order for loading to work - we must define the platform above
369+
load: true
355370
- name: test
356371
timeout-minutes: 5
357-
run: yarn test:e2e --detectOpenHandles --testPathIgnorePatterns="e2e/docker-image/"
372+
run: yarn test:e2e --detectOpenHandles

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
node_modules/
22
temp
33
dist/
4+
bundle/
45
out
56
build
67
generated

docker-bake.hcl

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
group "default" {
2+
targets = ["mesh-serve"]
3+
}
4+
5+
variable "VERSION" {
6+
default = "dev"
7+
}
8+
9+
target "mesh-serve" {
10+
context = "packages/serve-cli"
11+
platforms = ["linux/amd64", "linux/arm64"]
12+
tags = ["ghcr.io/ardatan/mesh-serve:${VERSION}"]
13+
}

docker/Dockerfile

-15
This file was deleted.

docker/README.md

-100
This file was deleted.

docker/docker-compose.yml

-20
This file was deleted.

docker/docker.hcl

-37
This file was deleted.

docker/package.json

-7
This file was deleted.

0 commit comments

Comments
 (0)