-
Notifications
You must be signed in to change notification settings - Fork 1
67 lines (52 loc) · 1.44 KB
/
deploy-to-aks.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
---
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