Skip to content

Commit

Permalink
az deploy CI
Browse files Browse the repository at this point in the history
  • Loading branch information
unkcpz committed Feb 13, 2024
1 parent e7f4c74 commit c288935
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 0 deletions.
67 changes: 67 additions & 0 deletions .github/workflows/deploy-to-aks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
---
name: Deploy to AKS

on:
push:
branches:
- main

# OIDC token being allowed be generated
permissions:
id-token: write
contents: read

jobs:
build-and-deploy:
runs-on: ubuntu-latest
environment: production
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Azure Login
uses: azure/login@v1
with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }}

- name: Azure CLI script
uses: azure/CLI@v1
with:
azcliversion: latest
inlineScript: |
az account show
#- name: Setup kubectl
# uses: azure/setup-kubectl@v3
# with:
# version: 'latest'

#- name: Setup Helm
# uses: azure/setup-helm@v3
# with:
# version: 'latest'
# token: ${{ secrets.GITHUB_TOKEN }}

#- name: Install tool for rendering templates
# run: |
# python3 -m pip install -r requirements.txt

#- name: Render values.yaml
# run: |
# jinja2 --format=env basehub/values.yaml.j2 > basehub/values.yaml

#- name: Update values.yaml

#- name: Connect to AKS
# run: az aks get-credentials --resource-group ${{ secrets.AZURE_RESOURCE_GROUP }} --name ${{ secrets.AZURE_KUBERNETES_CLUSTER }}

#- name: Deploy to AKS
# run: |
# ./deploy.sh

#- name: Logout of Azure
# run: az logout


6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,12 @@ source k8s-deploy-venv/bin/activate
python3 -m pip install -r requirements.txt
```

Render the `values.yaml` file with the following command:

```bash
jinja2 --format=env basehub/values.yaml.j2 > basehub/values.yaml
```

The following environment variables are required to be set:

* `K8S_NAMESPACE`: The namespace where the JupyterHub will be installed, e.g. `production`, `staging`.
Expand Down

0 comments on commit c288935

Please sign in to comment.