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

Commit

Permalink
Setup our own workflows to build and publish images (#1)
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Co <[email protected]>
  • Loading branch information
onimsha authored Mar 25, 2024
1 parent 7a861ec commit 6346f05
Show file tree
Hide file tree
Showing 3 changed files with 204 additions and 0 deletions.
68 changes: 68 additions & 0 deletions .github/workflows/gar-build-push-backend-container-on-tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: Build and Push Web Image on Tag

on:
push:
tags:
- "*"

env:
GarProjectID: ${{ vars.GCR_PROJECT_ID }}
GarImageName: prod-danswer-backend-gke
GarRepo: mv-danswer
GarCacheRepo: mv-apps-container-cache

jobs:
build-and-push:
runs-on: ubuntu-latest

steps:
- name: Checkout Git repository
uses: actions/checkout@v4

- name: Authenticate to Google Cloud
id: auth
uses: google-github-actions/auth@v2
with:
token_format: access_token
workload_identity_provider: ${{ secrets.GCP_WIP }}
service_account: ${{ secrets.GCP_SA_EMAIL }}

- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v2

- name: Login to GAR
uses: docker/login-action@v3
with:
registry: us-docker.pkg.dev
username: oauth2accesstoken
password: ${{ steps.auth.outputs.access_token }}

- uses: docker/metadata-action@v5
id: metadata
with:
images: |
us-docker.pkg.dev/${{ env.GarProjectID }}/${{ env.GarRepo }}/${{ env.GarImageName }}:${{ github.ref_name }}
- name: Web Image Docker Build and Push
uses: int128/kaniko-action@v1
with:
context: ./backend
file: ./backend/Dockerfile
push: true
cache: true
cache-repository: us-docker.pkg.dev/${{ env.GarProjectID }}/${{ env.GarCacheRepo }}/${{ env.GarImageName }}
labels: ${{ steps.metadata.outputs.labels }}
kaniko-args: |
--snapshot-mode=redo
--cache-ttl=730h
tags: |
us-docker.pkg.dev/${{ env.GarProjectID }}/${{ env.GarRepo }}/${{ env.GarImageName }}:${{ github.ref_name }}
us-docker.pkg.dev/${{ env.GarProjectID }}/${{ env.GarRepo }}/${{ env.GarImageName }}:latest
build-args: |
DANSWER_VERSION=${{ github.ref_name }}
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
with:
image-ref: docker.io/danswer/danswer-web-server:${{ github.ref_name }}
severity: "CRITICAL,HIGH"
68 changes: 68 additions & 0 deletions .github/workflows/gar-build-push-model-server-container-on-tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: Build and Push Web Image on Tag

on:
push:
tags:
- "*"

env:
GarProjectID: ${{ vars.GCR_PROJECT_ID }}
GarImageName: prod-danswer-model-server-gke
GarRepo: mv-danswer
GarCacheRepo: mv-apps-container-cache

jobs:
build-and-push:
runs-on: ubuntu-latest

steps:
- name: Checkout Git repository
uses: actions/checkout@v4

- name: Authenticate to Google Cloud
id: auth
uses: google-github-actions/auth@v2
with:
token_format: access_token
workload_identity_provider: ${{ secrets.GCP_WIP }}
service_account: ${{ secrets.GCP_SA_EMAIL }}

- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v2

- name: Login to GAR
uses: docker/login-action@v3
with:
registry: us-docker.pkg.dev
username: oauth2accesstoken
password: ${{ steps.auth.outputs.access_token }}

- uses: docker/metadata-action@v5
id: metadata
with:
images: |
us-docker.pkg.dev/${{ env.GarProjectID }}/${{ env.GarRepo }}/${{ env.GarImageName }}:${{ github.ref_name }}
- name: Web Image Docker Build and Push
uses: int128/kaniko-action@v1
with:
context: ./backend
file: ./backend/Dockerfile
push: true
cache: true
cache-repository: us-docker.pkg.dev/${{ env.GarProjectID }}/${{ env.GarCacheRepo }}/${{ env.GarImageName }}
labels: ${{ steps.metadata.outputs.labels }}
kaniko-args: |
--snapshot-mode=redo
--cache-ttl=730h
tags: |
us-docker.pkg.dev/${{ env.GarProjectID }}/${{ env.GarRepo }}/${{ env.GarImageName }}:${{ github.ref_name }}
us-docker.pkg.dev/${{ env.GarProjectID }}/${{ env.GarRepo }}/${{ env.GarImageName }}:latest
build-args: |
DANSWER_VERSION=${{ github.ref_name }}
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
with:
image-ref: docker.io/danswer/danswer-web-server:${{ github.ref_name }}
severity: "CRITICAL,HIGH"
68 changes: 68 additions & 0 deletions .github/workflows/gar-build-push-web-container-on-tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: Build and Push Web Image on Tag

on:
push:
tags:
- "*"

env:
GarProjectID: ${{ vars.GCR_PROJECT_ID }}
GarImageName: prod-danswer-web-server-gke
GarRepo: mv-danswer
GarCacheRepo: mv-apps-container-cache

jobs:
build-and-push:
runs-on: ubuntu-latest

steps:
- name: Checkout Git repository
uses: actions/checkout@v4

- name: Authenticate to Google Cloud
id: auth
uses: google-github-actions/auth@v2
with:
token_format: access_token
workload_identity_provider: ${{ secrets.GCP_WIP }}
service_account: ${{ secrets.GCP_SA_EMAIL }}

- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v2

- name: Login to GAR
uses: docker/login-action@v3
with:
registry: us-docker.pkg.dev
username: oauth2accesstoken
password: ${{ steps.auth.outputs.access_token }}

- uses: docker/metadata-action@v5
id: metadata
with:
images: |
us-docker.pkg.dev/${{ env.GarProjectID }}/${{ env.GarRepo }}/${{ env.GarImageName }}:${{ github.ref_name }}
- name: Web Image Docker Build and Push
uses: int128/kaniko-action@v1
with:
context: ./web
file: ./web/Dockerfile
push: true
cache: true
cache-repository: us-docker.pkg.dev/${{ env.GarProjectID }}/${{ env.GarCacheRepo }}/${{ env.GarImageName }}
labels: ${{ steps.metadata.outputs.labels }}
kaniko-args: |
--snapshot-mode=redo
--cache-ttl=730h
tags: |
us-docker.pkg.dev/${{ env.GarProjectID }}/${{ env.GarRepo }}/${{ env.GarImageName }}:${{ github.ref_name }}
us-docker.pkg.dev/${{ env.GarProjectID }}/${{ env.GarRepo }}/${{ env.GarImageName }}:latest
build-args: |
DANSWER_VERSION=${{ github.ref_name }}
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
with:
image-ref: docker.io/danswer/danswer-web-server:${{ github.ref_name }}
severity: "CRITICAL,HIGH"

0 comments on commit 6346f05

Please sign in to comment.