-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix the name discovery, event delivery and resurce_collected bugs (#159)
- Loading branch information
Showing
22 changed files
with
341 additions
and
281 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,99 @@ | ||
name: Push the current commit to dev | ||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
name: Build docker and deploy to dev | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set build platforms | ||
id: platform | ||
run: | | ||
GITHUB_REF="${{ github.ref }}" | ||
GITHUB_TAG=${GITHUB_REF##*/} | ||
echo "targets=linux/amd64" >> $GITHUB_OUTPUT | ||
if [ "${{ github.ref_type }}" = tag ]; then | ||
if [[ "$GITHUB_TAG" =~ [0-9]([ab]|rc)[0-9]* ]]; then | ||
echo "latest=false" >> $GITHUB_OUTPUT | ||
else | ||
echo "latest=true" >> $GITHUB_OUTPUT | ||
fi | ||
else | ||
echo "latest=false" >> $GITHUB_OUTPUT | ||
fi | ||
- name: Check short commit SHA and build targets | ||
run: | | ||
echo ${{ steps.platform.outputs.targets }} | ||
echo ${{ steps.platform.outputs.latest }} | ||
- name: Docker metadata | ||
id: metadata | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: | | ||
someengineering/fixbackend | ||
ghcr.io/someengineering/fixbackend | ||
flavor: | | ||
latest=${{ steps.platform.outputs.latest }} | ||
tags: | | ||
type=pep440,pattern={{version}} | ||
type=pep440,pattern={{major}}.{{minor}} | ||
type=pep440,pattern={{major}} | ||
type=sha,format=long,prefix= | ||
type=edge | ||
labels: | | ||
org.opencontainers.image.title=fixbackend | ||
org.opencontainers.image.description=coordinate jobs | ||
org.opencontainers.image.vendor=Some Engineering Inc. | ||
- name: Set up Docker Buildx | ||
id: buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Log in to Docker Hub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USER }} | ||
password: ${{ secrets.DOCKERHUB_PASS }} | ||
|
||
- name: Log in to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push fixbackend Docker image | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: . | ||
file: ./Dockerfile | ||
platforms: ${{ steps.platform.outputs.targets }} | ||
push: true | ||
tags: ${{ steps.metadata.outputs.tags }} | ||
labels: ${{ steps.metadata.outputs.labels }} | ||
provenance: false # Temporary workaround for https://github.com/docker/buildx/issues/1533 | ||
|
||
- name: Authenticate with GitHub CLI | ||
run: | | ||
gh auth login --with-token <<< "${{ secrets.SOME_CI_PAT }}" | ||
- name: Bump tag version | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.SOME_CI_PAT }} | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Some CI" | ||
git clone "https://[email protected]/someengineering/setup-infra.git" | ||
# update the tag | ||
cd setup-infra | ||
sed -i 's/newTag:.*/newTag: ${{ github.sha }}/g' argocd/envs/dev/fixbackend/kustomization.yaml | ||
git add . | ||
git commit -m "Manual deploy fixbackend on dev to ${{ github.sha }}" | ||
git push origin main |
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
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
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
This file was deleted.
Oops, something went wrong.
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
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
Oops, something went wrong.