forked from open-telemetry/opentelemetry-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[chore] Build and publish application hosted in the repository for th…
…e DotNet instrumentation E2E test (open-telemetry#2082) * Build and publish the DotNet E2E image Signed-off-by: Israel Blancas <iblancasa@gmail.com> * Build the image for linux/arm64,linux/amd64,linux/s390x and linux/ppc64le Signed-off-by: Israel Blancas <iblancasa@gmail.com> * Remove the application and generate it from the CLI Signed-off-by: Israel Blancas <iblancasa@gmail.com> * Fix architectures Signed-off-by: Israel Blancas <iblancasa@gmail.com> * Fix the tags Signed-off-by: Israel Blancas <iblancasa@gmail.com> * Fix tag for E2E Golang application Signed-off-by: Israel Blancas <iblancasa@gmail.com> * Fix tag Signed-off-by: Israel Blancas <iblancasa@gmail.com> * Fix tag Signed-off-by: Israel Blancas <iblancasa@gmail.com> * Make the workflow reusable Signed-off-by: Israel Blancas <iblancasa@gmail.com> * Fix name Signed-off-by: Israel Blancas <iblancasa@gmail.com> * Remove deps Signed-off-by: Israel Blancas <iblancasa@gmail.com> --------- Signed-off-by: Israel Blancas <iblancasa@gmail.com>
- Loading branch information
Showing
3 changed files
with
85 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
58 changes: 58 additions & 0 deletions
58
.github/workflows/reusable-publish-autoinstrumentation-e2e-images.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Reusable - Publish autoinstrumentation E2E images | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
language: | ||
type: string | ||
required: true | ||
platforms: | ||
type: string | ||
required: true | ||
|
||
jobs: | ||
publish-e2e-image: | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Docker meta | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: | | ||
ghcr.io/open-telemetry/opentelemetry-operator/e2e-test-app-${{ inputs.language }} | ||
tags: | | ||
type=ref,event=branch | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Cache Docker layers | ||
uses: actions/cache@v3 | ||
with: | ||
path: /tmp/.buildx-cache | ||
key: ${{ runner.os }}-buildx-${{ github.sha }} | ||
restore-keys: | | ||
${{ runner.os }}-buildx- | ||
- name: Login to GitHub Package Registry | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push | ||
uses: docker/build-push-action@v5 | ||
with: | ||
tags: ${{ steps.meta.outputs.tags }} | ||
context: tests/instrumentation-e2e-apps/${{ inputs.language }} | ||
platforms: ${{ inputs.platforms }} | ||
push: ${{ github.event_name == 'push' }} | ||
cache-from: type=local,src=/tmp/.buildx-cache | ||
cache-to: type=local,dest=/tmp/.buildx-cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:7.0.400-bookworm-slim-amd64 AS build | ||
ARG TARGETARCH | ||
WORKDIR /source | ||
|
||
RUN dotnet new webapp -o MyWebApp --no-https -f net7.0 | ||
|
||
WORKDIR /source/MyWebApp | ||
RUN dotnet publish -a $TARGETARCH -o /app | ||
|
||
FROM mcr.microsoft.com/dotnet/aspnet:7.0.10-bullseye-slim | ||
|
||
ENV DOTNET_ROLL_FORWARD=Major | ||
ENV DOTNET_ROLL_FORWARD_PRE_RELEASE=1 | ||
|
||
WORKDIR /app | ||
COPY --from=build /app/ . | ||
|
||
ENTRYPOINT ["./MyWebApp"] |