Fixed redis serialization for passkeys, fixed Dockerfile for go servi… #100
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
name: Build Config Server and Deploy to GKE | |
on: | |
push: | |
branches: | |
- master | |
# Environment variables available to all jobs and steps in this workflow | |
env: | |
GKE_PROJECT: ${{ secrets.GKE_PROJECT }} | |
GKE_EMAIL: ${{ secrets.GKE_EMAIL }} | |
GITHUB_SHA: ${{ github.sha }} | |
GKE_ZONE: europe-west1-b | |
GKE_CLUSTER: your-first-cluster-1 | |
IMAGE: config-server | |
jobs: | |
setup-build-publish-deploy: | |
if: contains(toJson(github), 'deploy config-server') | |
name: Setup, Build, Publish, and Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
# Setup gcloud CLI | |
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master | |
with: | |
version: '270.0.0' | |
service_account_email: ${{ secrets.GKE_EMAIL }} | |
service_account_key: ${{ secrets.GKE_KEY }} | |
# Configure docker to use the gcloud command-line tool as a credential helper | |
- run: | | |
# Set up docker to authenticate | |
# via gcloud command-line tool. | |
gcloud auth configure-docker | |
# Set up JDK 1.8 | |
- name: JDK | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
# Build the Docker image with Maven | |
- name: Build | |
run: | | |
mvn clean install -pl config-server -am -B docker:build | |
docker tag $IMAGE:latest eu.gcr.io/$GKE_PROJECT/$IMAGE:$GITHUB_SHA | |
# Push the Docker image to Google Container Registry | |
- name: Publish | |
run: | | |
docker push eu.gcr.io/$GKE_PROJECT/$IMAGE:$GITHUB_SHA | |
# Set up docker image | |
- name: Set up docker image | |
run: | | |
gcloud container clusters get-credentials $GKE_CLUSTER --zone $GKE_ZONE --project $GKE_PROJECT | |
gcloud components install beta --quiet | |
yes | gcloud beta container images add-tag eu.gcr.io/$GKE_PROJECT/$IMAGE:$GITHUB_SHA eu.gcr.io/$GKE_PROJECT/$IMAGE:latest | |
# Deploy the Docker image to the GKE cluster | |
- name: Deploy | |
run: | | |
kubectl config view | |
kubectl config current-context | |
kubectl patch deployment $IMAGE -p "{\"spec\":{\"template\":{\"metadata\":{\"annotations\":{\"date\":\"`date +'%s'`\"}}}}}" || kubectl apply -f ./.github/workflows/kubernetes/deployment-config-server.yml |