-
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 #45 from thehyve/devops/FAIRSPC-57_github_actions
Devops/fairspc 57 GitHub actions
- Loading branch information
Showing
18 changed files
with
147 additions
and
227 deletions.
There are no files selected for viewing
85 changes: 85 additions & 0 deletions
85
.github/workflows/build_and_upload_docker_image_on_push.yaml
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,85 @@ | ||
name: Build & Upload Fairspace-Jupyter Docker image | ||
|
||
on: | ||
push: | ||
|
||
jobs: | ||
build-and-upload-jupyterhub: | ||
name: Build & Upload Fairspace-Jupyter (K8s Hub) Docker image | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Get version tag for artifact | ||
run: | | ||
BRANCH=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}} | ||
echo "Building images from the branch: $BRANCH" | ||
VER=$(cat ./VERSION) | ||
echo "Building images of version: $VER" | ||
if [ $BRANCH != "release" ] | ||
then | ||
VER=$VER-SNAPSHOT | ||
fi | ||
echo "VERSION=$VER" >> $GITHUB_ENV | ||
- name: Log in to the Container registry | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ${{ vars.DOCKER_REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: ${{ vars.DOCKER_REGISTRY }}/${{ github.repository }}/jupyterhub-hub | ||
|
||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: ./projects/jupyterhub-hub/ | ||
push: ${{github.ref == 'refs/heads/release' || github.ref == 'refs/heads/dev'}} | ||
tags: ${{ vars.DOCKER_REGISTRY }}/${{ github.repository }}/jupyterhub-hub:${{ env.VERSION }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
|
||
build-and-upload-jupyterhub-singleuser: | ||
name: Build & Upload Fairspace-Jupyter (Single User) Docker image | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Get version tag for artifact | ||
run: | | ||
BRANCH=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}} | ||
echo "Building images from the branch: $BRANCH" | ||
VER=$(cat ./VERSION) | ||
echo "Building images of version: $VER" | ||
if [ $BRANCH != "release" ] | ||
then | ||
VER=$VER-SNAPSHOT | ||
fi | ||
echo "VERSION=$VER" >> $GITHUB_ENV | ||
- name: Log in to the Container registry | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ${{ vars.DOCKER_REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: ${{ vars.DOCKER_REGISTRY }}/${{ github.repository }}/jupyterhub-singleuser | ||
|
||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: ./projects/jupyterhub-singleuser/ | ||
push: ${{github.ref == 'refs/heads/release' || github.ref == 'refs/heads/dev'}} | ||
tags: ${{ vars.DOCKER_REGISTRY }}/${{ github.repository }}/jupyterhub-singleuser:${{ env.VERSION }} | ||
labels: ${{ steps.meta.outputs.labels }} |
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,59 @@ | ||
name: Package and Push Helm Chart | ||
|
||
on: | ||
push: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: "Version of the Helm chart to push" | ||
required: false | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Prepare version | ||
run: | | ||
VERSION=$(cat ./VERSION) | ||
BRANCH=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}} | ||
echo "Building images from the branch: $BRANCH" | ||
if [ $BRANCH != "release" ]; then | ||
VERSION=$VERSION-SNAPSHOT | ||
fi | ||
# override version of custom input is provided | ||
if [[ -n "${{ github.event.inputs.version }}" ]]; then | ||
VERSION=${{ github.event.inputs.version }} | ||
fi | ||
echo "Helm charts version to be deployed: $VERSION" | ||
echo "VERSION=$VERSION" >> $GITHUB_ENV | ||
- name: Setup Helm | ||
uses: azure/[email protected] | ||
with: | ||
version: ${{ vars.HELM_VERSION }} | ||
|
||
- name: Login with Helm | ||
run: | | ||
echo ${{ secrets.GITHUB_TOKEN }} | helm registry login ${{ vars.HELM_REGISTRY }} --username ${{ github.repository_owner }} --password-stdin | ||
- name: Add/update Helm dependencies | ||
run: | | ||
helm repo add jupyterhub https://jupyterhub.github.io/helm-chart | ||
helm dependency update "charts/jupyter" | ||
- name: Lint Helm chart | ||
run: | | ||
helm lint "charts/jupyter" | ||
- name: Package Helm chart | ||
run: | | ||
helm package "charts/jupyter" --version ${{ env.VERSION }} | ||
- name: Push Helm chart to repository | ||
if: github.ref == 'refs/heads/release' || github.ref == 'refs/heads/dev' | ||
run: | | ||
helm push "fairspace-jupyter-${{ env.VERSION }}.tgz" "oci://${{ vars.HELM_REGISTRY }}" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.