-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add build only Github workflow for alerting/temporal
- Loading branch information
ARIC LASRY
authored and
ARIC LASRY
committed
Nov 27, 2023
1 parent
fb4ac5e
commit 2419047
Showing
1 changed file
with
52 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Deploy Alerting Temporal | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: deploy_alerting_temporal | ||
cancel-in-progress: false | ||
|
||
env: | ||
GCLOUD_PROJECT_ID: ${{ secrets.GCLOUD_PROJECT_ID }} | ||
|
||
jobs: | ||
build-and-deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Get short sha | ||
id: short_sha | ||
run: echo "short_sha=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | ||
|
||
- name: "Authenticate with Google Cloud" | ||
uses: "google-github-actions/auth@v1" | ||
with: | ||
credentials_json: "${{ secrets.GCLOUD_SA_KEY }}" | ||
|
||
- name: "Set up Cloud SDK" | ||
uses: "google-github-actions/setup-gcloud@v1" | ||
|
||
- name: Install gke-gcloud-auth-plugin | ||
run: | | ||
gcloud components install gke-gcloud-auth-plugin | ||
- name: Setup kubectl | ||
run: | | ||
gcloud container clusters get-credentials dust-kube --region us-central1 | ||
- name: Build the image on Cloud Build | ||
run: | | ||
chmod +x ./k8s/cloud-build.sh | ||
./k8s/cloud-build.sh alerting-temporal ./alerting/temporal/Dockerfile ./alerting/temporal/ | ||
# - name: Deploy the image on Kubernetes | ||
# run: | | ||
# chmod +x ./k8s/deploy-image.sh | ||
# ./k8s/deploy-image.sh gcr.io/$GCLOUD_PROJECT_ID/alerting-temporal-image:${{ steps.short_sha.outputs.short_sha }} alerting-temporal-deployment | ||
|
||
# - name: Wait for rollout to complete | ||
# run: kubectl rollout status deployment/alerting-temporal-deployment --timeout=10m |