Update jupyter-singleuser version referenced in Jupyterhub chart (#3269) #6
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
name: Deploy Kubernetes changes | |
on: | |
push: | |
branches: | |
- 'main' | |
paths: | |
- '.holo/config.toml' | |
- '.holo/sources/jarvus-cluster-template.toml' | |
- '.holo/branches/kubernetes-workspace/**' | |
- '.github/workflows/*-kubernetes.yml' | |
- 'ci/**' | |
- 'kubernetes/apps/**' | |
- 'kubernetes/system/**' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_ACTIONS_TOKEN }} | |
jobs: | |
deploy-kubernetes: | |
runs-on: ubuntu-latest | |
env: | |
CLOUDSDK_CORE_PROJECT: cal-itp-data-infra | |
GKE_NAME: data-infra-apps | |
GKE_REGION: us-west1 | |
USE_GKE_GCLOUD_AUTH_PLUGIN: True | |
steps: | |
# Setup | |
- uses: actions/checkout@v4 | |
- uses: 'google-github-actions/auth@v2' | |
with: | |
credentials_json: '${{ secrets.GCP_SA_KEY }}' | |
- uses: google-github-actions/setup-gcloud@v2 | |
- run: gcloud components install gke-gcloud-auth-plugin | |
- uses: google-github-actions/get-gke-credentials@v1 | |
with: | |
cluster_name: ${{ env.GKE_NAME }} | |
location: ${{ env.GKE_REGION }} | |
- run: curl -sSL https://install.python-poetry.org | python - | |
- name: Set up hologit | |
env: | |
BIO_RELEASE: 1.6.821 | |
run: | | |
curl -LO "https://github.com/biome-sh/biome/releases/download/v${BIO_RELEASE}/bio-${BIO_RELEASE}-x86_64-linux.tar.gz" | |
tar xzvf "bio-${BIO_RELEASE}-x86_64-linux.tar.gz" | |
sudo mv bio /usr/local/bin/bio | |
sudo bio pkg install --binlink jarvus/hologit | |
git config user.name "Github Action $GITHUB_JOB" | |
git config user.email "$(whoami)@$(uname -n)" | |
# Render Kubernetes content with parent underlay and checkout | |
- run: git holo project kubernetes-workspace --commit-to=kubernetes | |
- run: git checkout kubernetes | |
# Invoke deployment tasks | |
- run: poetry install | |
working-directory: ci | |
- run: poetry run invoke secrets -f "./channels/prod.yaml" | |
working-directory: ci | |
- run: poetry run invoke release -f "./channels/prod.yaml" | |
working-directory: ci |