mirror of
https://github.com/pragma-/pbot.git
synced 2025-12-13 12:17:22 +01:00
Proof-of-concept deploy to GKE.
This commit is contained in:
parent
328d34b889
commit
115fee55d1
65
.github/workflows/candide.yaml
vendored
Normal file
65
.github/workflows/candide.yaml
vendored
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
name: Deploy candide for Libera
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- $default-branch
|
||||||
|
|
||||||
|
env:
|
||||||
|
PROJECT_ID: ${{ secrets.GKE_PROJECT }}
|
||||||
|
GKE_CLUSTER: cluster-1
|
||||||
|
GKE_ZONE: us-central1-c
|
||||||
|
DEPLOYMENT_NAME: candide
|
||||||
|
REPOSITORY: pbot
|
||||||
|
IMAGE: candide
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
setup-build-publish-deploy:
|
||||||
|
name: Setup, Build, Publish, and Deploy
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
environment: production
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: 'read'
|
||||||
|
id-token: 'write'
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: 'Authenticate to Google Cloud'
|
||||||
|
id: 'auth'
|
||||||
|
uses: 'google-github-actions/auth@v0'
|
||||||
|
with:
|
||||||
|
credentials_json: '${{ secrets.GCP_CREDENTIALS }}'
|
||||||
|
|
||||||
|
- name: Docker configuration
|
||||||
|
run: |-
|
||||||
|
echo ${{steps.auth.outputs.access_token}} | docker login -u oauth2accesstoken --password-stdin https://gcr.io
|
||||||
|
|
||||||
|
- name: Set up GKE credentials
|
||||||
|
uses: google-github-actions/get-gke-credentials@v0
|
||||||
|
with:
|
||||||
|
cluster_name: ${{ env.GKE_CLUSTER }}
|
||||||
|
location: ${{ env.GKE_ZONE }}
|
||||||
|
|
||||||
|
- name: Build image
|
||||||
|
run: |-
|
||||||
|
docker build --tag "gcr.io/$PROJECT_ID/$REPOSITORY/$IMAGE:$GITHUB_SHA" .
|
||||||
|
|
||||||
|
- name: Push image
|
||||||
|
run: |-
|
||||||
|
docker push "gcr.io/$PROJECT_ID/$REPOSITORY/$IMAGE:$GITHUB_SHA"
|
||||||
|
|
||||||
|
- name: Set up Kustomize
|
||||||
|
run: |-
|
||||||
|
curl -sfLo kustomize https://github.com/kubernetes-sigs/kustomize/releases/download/v3.1.0/kustomize_3.1.0_linux_amd64
|
||||||
|
chmod u+x ./kustomize
|
||||||
|
|
||||||
|
- name: Deploy image
|
||||||
|
run: |-
|
||||||
|
# replacing the image name in the k8s template
|
||||||
|
./kustomize edit set image LOCATION-docker.pkg.dev/PROJECT_ID/REPOSITORY/IMAGE:TAG=gcr.io/$PROJECT_ID/$REPOSITORY/$IMAGE:$GITHUB_SHA
|
||||||
|
./kustomize build . | kubectl apply -f -
|
||||||
|
kubectl rollout status deployment/$DEPLOYMENT_NAME
|
||||||
|
kubectl get services -o wide
|
||||||
Loading…
x
Reference in New Issue
Block a user