-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
packages/api: Add version information to prometheus metrics (#1597)
- Loading branch information
1 parent
03e9140
commit 149fc7d
Showing
13 changed files
with
1,584 additions
and
1,652 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,20 @@ | ||
# Package to build | ||
packages/* | ||
!packages/api | ||
|
||
# General git and node frameworks files | ||
.git | ||
.github | ||
.cache | ||
**/Dockerfile | ||
**/.next | ||
*/*/.next | ||
**/node_modules | ||
**/coverage | ||
**/yarn-error.log | ||
**/.next | ||
|
||
# API-specific | ||
*/*/minio | ||
# Package to build | ||
packages/* | ||
!packages/api | ||
!packages/www | ||
|
||
*/*/dist | ||
*/*/docs | ||
*/*/minio | ||
*/*/out |
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
This file was deleted.
Oops, something went wrong.
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,98 @@ | ||
name: Docker build and push images | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
tags: | ||
- "v*" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
name: ${{ matrix.build.package }} docker image generation | ||
if: | ||
github.event_name == 'push' || | ||
github.event.pull_request.head.repo.full_name == github.repository | ||
permissions: | ||
packages: write | ||
contents: read | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
build: | ||
- path: packages/www | ||
image: livepeerci/www | ||
package: www | ||
- path: packages/api | ||
image: livepeerci/api | ||
package: api | ||
|
||
steps: | ||
- name: Check out code | ||
uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
# Check https://github.com/livepeer/go-livepeer/pull/1891 | ||
# for ref value discussion | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.CI_DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.CI_DOCKERHUB_TOKEN }} | ||
|
||
- name: Log in to the Container registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ github.token }} | ||
|
||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: | | ||
${{ matrix.build.image }} | ||
ghcr.io/${{ github.repository }}/${{ matrix.build.package }} | ||
tags: | | ||
type=ref,event=branch | ||
type=ref,event=tag | ||
type=ref,event=pr | ||
type=sha | ||
type=sha,format=long | ||
type=semver,pattern={{version}},prefix=v | ||
type=semver,pattern={{major}}.{{minor}},prefix=v | ||
type=raw,value=latest,enable={{is_default_branch}} | ||
type=raw,value=${{ github.event.pull_request.head.ref }} | ||
- name: Build and push livepeer docker image | ||
uses: docker/build-push-action@v3 | ||
with: | ||
build-args: | | ||
VERSION=${{ (github.ref_type == 'tag' && github.ref_name) || (github.event.pull_request.head.sha || github.sha) }} | ||
GITHUB_SHA=${{ (github.event.pull_request.head.sha || github.sha) }} | ||
context: . | ||
platforms: linux/amd64 | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
file: ${{ matrix.build.path }}/Dockerfile | ||
labels: ${{ steps.meta.outputs.labels }} | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
|
||
- name: Notify new build upload | ||
run: curl -X POST https://holy-bread-207a.livepeer.workers.dev |
This file was deleted.
Oops, something went wrong.
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 @@ | ||
nodejs 18.12.1 |
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 |
---|---|---|
@@ -1,30 +1,30 @@ | ||
FROM node:16 as builder | ||
WORKDIR /app | ||
FROM node:16 as builder | ||
WORKDIR /app | ||
|
||
ENV NODE_ENV development | ||
ENV NODE_ENV development | ||
|
||
ADD packages/api/package.json yarn.lock ./ | ||
RUN yarn install --ignore-scripts --frozen-lockfile | ||
COPY packages/api/package.json yarn.lock ./ | ||
RUN yarn install --ignore-scripts --frozen-lockfile | ||
|
||
ADD packages/api/tsconfig.json . | ||
ADD packages/api/src src | ||
RUN yarn run prepare | ||
COPY packages/api/tsconfig.json . | ||
COPY packages/api/src src | ||
RUN yarn run prepare | ||
|
||
FROM node:16 | ||
FROM node:16 | ||
WORKDIR /app | ||
|
||
ENV NODE_ENV production | ||
ENV NODE_ENV production | ||
|
||
ADD packages/api/package.json yarn.lock ./ | ||
RUN yarn install --frozen-lockfile | ||
COPY --from=builder /app/dist dist | ||
COPY packages/api/package.json yarn.lock ./ | ||
RUN yarn install --frozen-lockfile | ||
COPY --from=builder /app/dist dist | ||
|
||
ARG VERSION | ||
ENV VERSION ${VERSION} | ||
ARG GITHUB_SHA | ||
ENV GITHUB_SHA ${GITHUB_SHA} | ||
ARG VERSION | ||
ENV VERSION ${VERSION} | ||
ARG GITHUB_SHA | ||
ENV GITHUB_SHA ${GITHUB_SHA} | ||
|
||
RUN node dist/cli.js --help | ||
RUN node dist/cli.js --help | ||
|
||
ENV LP_API_PORT 80 | ||
ENV LP_API_PORT 80 | ||
ENTRYPOINT ["node", "dist/cli.js"] |
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
Oops, something went wrong.