-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 2657-backup-and-restore-service-deploy
- Loading branch information
Showing
35 changed files
with
1,029 additions
and
830 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,19 @@ | ||
name: health-check | ||
description: "Check health of Nebari deployment" | ||
|
||
inputs: | ||
domain: | ||
description: Domain name | ||
required: true | ||
|
||
runs: | ||
using: composite | ||
|
||
steps: | ||
- name: List kubernetes components | ||
shell: bash | ||
run: kubectl get --all-namespaces all,cm,secret,pv,pvc,ing | ||
|
||
- name: Check if JupyterHub login page is accessible | ||
shell: bash | ||
run: curl --insecure --include 'https://${{ inputs.domain }}/hub/home' |
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,81 @@ | ||
name: init-local | ||
description: "Initialize Nebari config for local deployment" | ||
|
||
inputs: | ||
directory: | ||
description: "Path to directory to initialize in" | ||
required: false | ||
default: './local-deployment' | ||
|
||
outputs: | ||
directory: | ||
description: "Path to config directory" | ||
value: ${{ steps.metadata.outputs.directory }} | ||
config: | ||
description: "Path to Nebari config" | ||
value: ${{ steps.metadata.outputs.config }} | ||
project: | ||
description: "Project name" | ||
value: ${{ steps.metadata.outputs.project }} | ||
domain: | ||
description: "Domain name" | ||
value: ${{ steps.metadata.outputs.domain }} | ||
|
||
runs: | ||
using: composite | ||
|
||
steps: | ||
- shell: bash | ||
id: metadata | ||
run: | | ||
# Setup metadata | ||
DIRECTORY=$(realpath '${{ inputs.directory }}') | ||
mkdir --parents "${DIRECTORY}" | ||
echo "directory=${DIRECTORY}" | tee --append "${GITHUB_OUTPUT}" | ||
CONFIG="${DIRECTORY}/nebari-config.yaml" | ||
echo "config=${CONFIG}" | tee --append "${GITHUB_OUTPUT}" | ||
PROJECT='github-actions' | ||
echo "project=${PROJECT}" | tee --append "${GITHUB_OUTPUT}" | ||
DOMAIN='github-actions.nebari.dev' | ||
nslookup "${DOMAIN}" | ||
echo "domain=${DOMAIN}" | tee --append "${GITHUB_OUTPUT}" | ||
- shell: bash -l {0} | ||
id: init | ||
working-directory: ${{ steps.metadata.outputs.directory }} | ||
run: | | ||
nebari init local \ | ||
--project-name '${{ steps.metadata.outputs.project }}' \ | ||
--domain-name '${{ steps.metadata.outputs.domain }}' \ | ||
--auth-provider password \ | ||
--output '${{ steps.metadata.outputs.config }}' | ||
- shell: bash | ||
run: | | ||
# Update nebari config for CI | ||
# Change default JupyterLab theme | ||
cat >> '${{ steps.metadata.outputs.config }}' <<- EOM | ||
jupyterlab: | ||
default_settings: | ||
"@jupyterlab/apputils-extension:themes": | ||
theme: JupyterLab Dark | ||
EOM | ||
# Change default value for minio persistence size | ||
cat >> '${{ steps.metadata.outputs.config }}' <<- EOM | ||
monitoring: | ||
enabled: true | ||
overrides: | ||
minio: | ||
persistence: | ||
size: 1Gi | ||
EOM | ||
- shell: bash | ||
run: | | ||
# Display Nebari config | ||
cat '${{ steps.metadata.outputs.config }}' |
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,30 @@ | ||
name: setup-local | ||
description: "Setup runner for local deployment" | ||
|
||
inputs: | ||
kubectl-version: | ||
description: "Version of kubectl to install" | ||
required: false | ||
default: "1.19.16" | ||
|
||
runs: | ||
using: composite | ||
|
||
steps: | ||
- uses: azure/setup-kubectl@v4 | ||
with: | ||
version: v${{ inputs.kubectl-version }} | ||
|
||
- shell: bash | ||
run: | | ||
# Enable docker permissions for user | ||
sudo docker ps | ||
sudo usermod -aG docker $USER && newgrp docker | ||
docker info | ||
docker ps | ||
- shell: bash | ||
run: | | ||
# Get routing table for docker pods | ||
ip route |
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 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
Oops, something went wrong.