Skip to content

feat: add leader election to allow for multiple replicas. #17

feat: add leader election to allow for multiple replicas.

feat: add leader election to allow for multiple replicas. #17

Workflow file for this run

name: build_pr
on:
- pull_request
jobs:
# Any checks that run pre-build
pre-build-checks:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Set environment variables
shell: bash
run: |
echo "TAG=${GITHUB_SHA}" >> $GITHUB_ENV
echo "GIT_SHA=${GITHUB_SHA}" >> $GITHUB_ENV
-
name: Docker meta
id: meta
uses: crazy-max/ghaction-docker-meta@v2
with:
images: statcan/ingress-istio-controller
labels: |
org.opencontainers.image.vendor=Statistics Canada
org.opencontainers.image.licenses=https://github.com/StatCan/ingress-istio-controller/blob/${{ env.GIT_SHA }}/LICENSE
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build
id: docker_build
uses: docker/build-push-action@v2
with:
push: false
tags: statcan/ingress-istio-controller:${{ env.TAG }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
VERSION=${{ env.TAG }}
-
name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}