Workflow file for this run
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
# the works flow will build the code and only | |
# deploy/push the new container to a container | |
# repository when it on the brach cloudzero_optimized | |
# | |
# Since CloudZero has changes in the fork that will never be | |
# push back to AWS, we will manage our changes on | |
# branch cloudzero_optimized | |
name: Multi-arch Builds for all branch not name main | |
# Controls when the workflow will run | |
on: | |
push: | |
branches: | |
- '*' | |
- '!cloudzero-optimized' | |
workflow_dispatch: | |
permissions: | |
contents: write | |
packages: write | |
id-token: write | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
multi-arch-build: | |
runs-on: ubuntu-latest | |
environment: develop | |
steps: | |
# Get the repositery's code | |
- name: Checkout | |
uses: actions/checkout@v2 | |
# the version of the container is the latest git tag. | |
# This pull in the git tags | |
- name: get fetch to update tags locally | |
if: ${{ !env.act }} # skip if running using act on local machine | |
run: git fetch --prune --unshallow --tags | |
- uses: nelonoel/branch-name@v1.0.1 | |
- name: Set Image Name | |
run: | | |
echo "IMAGE_NAME=cloudzero/cloudzero-agent" >> $GITHUB_ENV | |
- name: Set Dynamic variable | |
run: | | |
echo "IMAGE_ID=$(echo ${{ secrets.ECR_REPO }}/${{ env.IMAGE_NAME }} | tr '[A-Z]' '[a-z]')" >> $GITHUB_ENV | |
- name: Get NEXT_TAG value | |
run: | | |
echo "NEXT_TAG=${GITHUB_REF##*/}.${{ github.run_number }}" | |
echo "NEXT_TAG=${GITHUB_REF##*/}.${{ github.run_number }}" >> $GITHUB_ENV | |
- name: add version for build | |
run: | | |
mkdir -p build/bin | |
echo '${{ env.NEXT_TAG }}' > build/bin/CWAGENT_VERSION | |
# https://github.com/docker/setup-qemu-action | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
# https://github.com/docker/setup-buildx-action | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v2 | |
# with: | |
# version: v0.9.1 | |
- name: Cache Docker layers | |
uses: actions/cache@v2 | |
with: | |
path: /tmp/buildx-cache | |
key: ${{ github.ref_name }}-buildx | |
restore-keys: | | |
${{ github.ref_name }}-buildx | |
- name: Setup AWS Credentials to Deploy to Research | |
id: aws-deploy-credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-region: us-east-1 | |
role-to-assume: ${{ secrets.CZ_GITHUB_DEPLOY }} | |
role-session-name: github-non-main-branch | |
role-duration-seconds: 3600 | |
role-skip-session-tagging: true | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Create ECR repo if missing | |
uses: byu-oit/github-action-create-ecr-repo-if-missing@v2 | |
with: | |
DOCKER_REPO_NAME: ${{ env.IMAGE_NAME }} # Your repo name goes here | |
NUM_DAYS_BEFORE_EXPIRING_UNTAGGED_IMAGES: 2 | |
NUM_TAGGED_IMAGES_TO_RETAIN: 5 | |
TAG_PREFIX: v${{env.NEXT_TAG}} | |
- name: Docker meta | |
id: meta_cloudzero_agent | |
uses: docker/metadata-action@v3 | |
with: | |
images: ${{ env.IMAGE_ID }} | |
# cloudzero/cloudzero-agent | |
# generate Docker tags based on the following events/attributes | |
tags: | | |
type=raw,value=${{env.NEXT_TAG}} | |
type=raw,value=latest,enable=true | |
labels: | | |
app.kubernetes.io/name=${{env.IMAGE_NAME}} | |
app.kubernetes.io/version=v${{env.NEXT_TAG}} | |
- name: Build and push | |
uses: docker/build-push-action@v4 | |
env: | |
BUILDX_NO_DEFAULT_ATTESTATION: 1 | |
with: | |
context: . | |
file: amazon-cloudwatch-container-insights/cloudwatch-agent-dockerfile/source/Dockerfile | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: ${{ steps.meta_cloudzero_agent.outputs.tags }} | |
provenance: false | |
buildkitd-flags: --debug | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
- name: Image digest | |
run: echo '${{ steps.docker_build.outputs.digest }}' |