-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #159 from IFRCGo/project/alpha-helm
Project/alpha helm
- Loading branch information
Showing
23 changed files
with
12,250 additions
and
11,009 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 |
---|---|---|
|
@@ -139,4 +139,5 @@ data/ | |
./.tox | ||
|
||
backend/ | ||
!backend/schema.graphql | ||
geographical_data/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
name: Publish nginx serve image | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
- project/* | ||
|
||
permissions: | ||
packages: write | ||
|
||
|
||
jobs: | ||
publish_image: | ||
name: Publish Docker Image | ||
runs-on: ubuntu-latest | ||
|
||
outputs: | ||
docker_image_name: ${{ steps.prep.outputs.tagged_image_name }} | ||
docker_image_tag: ${{ steps.prep.outputs.tag }} | ||
docker_image: ${{ steps.prep.outputs.tagged_image }} | ||
|
||
steps: | ||
- uses: actions/checkout@main | ||
with: | ||
submodules: true | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: 🐳 Prepare Docker | ||
id: prep | ||
env: | ||
IMAGE_NAME: ghcr.io/${{ github.repository }} | ||
run: | | ||
BRANCH_NAME=$(echo $GITHUB_REF_NAME | sed 's|:|-|' | tr '[:upper:]' '[:lower:]' | sed 's/_/-/g' | cut -c1-100 | sed 's/-*$//') | ||
# XXX: Check if there is a slash in the BRANCH_NAME eg: project/add-docker | ||
if [[ "$BRANCH_NAME" == *"/"* ]]; then | ||
# XXX: Change the docker image package to -alpha | ||
IMAGE_NAME="$IMAGE_NAME-alpha" | ||
TAG="$(echo "$BRANCH_NAME" | sed 's|/|-|g').$(echo $GITHUB_SHA | head -c7)" | ||
else | ||
TAG="$BRANCH_NAME.$(echo $GITHUB_SHA | head -c7)" | ||
fi | ||
IMAGE_NAME=$(echo $IMAGE_NAME | tr '[:upper:]' '[:lower:]') | ||
echo "tagged_image_name=${IMAGE_NAME}" >> $GITHUB_OUTPUT | ||
echo "tag=${TAG}" >> $GITHUB_OUTPUT | ||
echo "tagged_image=${IMAGE_NAME}:${TAG}" >> $GITHUB_OUTPUT | ||
echo "::notice::Tagged docker image: ${IMAGE_NAME}:${TAG}" | ||
- name: 🐳 Set up Docker Buildx | ||
id: buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: 🐳 Cache Docker layers | ||
uses: actions/cache@v4 | ||
with: | ||
path: /tmp/.buildx-cache | ||
key: ${{ runner.os }}-buildx-${{ github.ref }} | ||
restore-keys: | | ||
${{ runner.os }}-buildx-refs/develop | ||
${{ runner.os }}-buildx- | ||
- name: 🐳 Docker build | ||
uses: docker/build-push-action@v6 | ||
with: | ||
context: . | ||
builder: ${{ steps.buildx.outputs.name }} | ||
file: Dockerfile | ||
target: nginx-serve | ||
load: true | ||
push: true | ||
tags: ${{ steps.prep.outputs.tagged_image }} | ||
cache-from: type=local,src=/tmp/.buildx-cache | ||
cache-to: type=local,dest=/tmp/.buildx-cache-new | ||
|
||
- name: 🐳 Move docker cache | ||
run: | | ||
rm -rf /tmp/.buildx-cache | ||
mv /tmp/.buildx-cache-new /tmp/.buildx-cache | ||
publish_helm: | ||
name: Publish Helm | ||
needs: publish_image | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Install Helm | ||
uses: azure/setup-helm@v3 | ||
|
||
- name: Tag docker image in Helm Chart values.yaml | ||
env: | ||
IMAGE_NAME: ${{ needs.publish_image.outputs.docker_image_name }} | ||
IMAGE_TAG: ${{ needs.publish_image.outputs.docker_image_tag }} | ||
run: | | ||
# Update values.yaml with latest docker image | ||
sed -i "s|SET-BY-CICD-IMAGE|$IMAGE_NAME|" nginx-serve/helm/values.yaml | ||
sed -i "s/SET-BY-CICD-TAG/$IMAGE_TAG/" nginx-serve/helm/values.yaml | ||
- name: Package Helm Chart | ||
id: set-variables | ||
env: | ||
IMAGE_TAG: ${{ needs.publish_image.outputs.docker_image_tag }} | ||
run: | | ||
# XXX: Check if there is a slash in the BRANCH_NAME eg: project/add-docker | ||
if [[ "$GITHUB_REF_NAME" == *"/"* ]]; then | ||
# XXX: Change the helm chart to <chart-name>-alpha | ||
sed -i 's/^name: \(.*\)/name: \1-alpha/' nginx-serve/helm/Chart.yaml | ||
fi | ||
sed -i "s/SET-BY-CICD/$IMAGE_TAG/g" nginx-serve/helm/Chart.yaml | ||
helm package ./nginx-serve/helm -d .helm-charts | ||
- name: Push Helm Chart | ||
env: | ||
IMAGE: ${{ needs.publish_image.outputs.docker_image }} | ||
OCI_REPO: oci://ghcr.io/${{ github.repository }} | ||
run: | | ||
OCI_REPO=$(echo $OCI_REPO | tr '[:upper:]' '[:lower:]') | ||
PACKAGE_FILE=$(ls .helm-charts/*.tgz | head -n 1) | ||
echo "# Helm Chart" >> $GITHUB_STEP_SUMMARY | ||
echo "" >> $GITHUB_STEP_SUMMARY | ||
echo "Tagged Image: **$IMAGE**" >> $GITHUB_STEP_SUMMARY | ||
echo "" >> $GITHUB_STEP_SUMMARY | ||
echo "Helm push output" >> $GITHUB_STEP_SUMMARY | ||
echo "" >> $GITHUB_STEP_SUMMARY | ||
echo '```bash' >> $GITHUB_STEP_SUMMARY | ||
helm push "$PACKAGE_FILE" $OCI_REPO >> $GITHUB_STEP_SUMMARY | ||
echo '```' >> $GITHUB_STEP_SUMMARY |
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
Oops, something went wrong.