forked from Azure/mlops-v2-gha-demo
-
Notifications
You must be signed in to change notification settings - Fork 1
85 lines (81 loc) · 3.39 KB
/
deploy-online-endpoint-pipeline-classical.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
name: deploy-online-endpoint-pipeline
on:
workflow_dispatch:
jobs:
get-config:
uses: Azure/mlops-templates/.github/workflows/read-yaml.yml@main
with:
file_name: config-infra-prod.yml
get-endpoint:
needs: get-config
runs-on: ubuntu-latest
outputs:
check_enpoint: ${{ steps.get-ml-endpoint.outputs.CHECK_ENPOINT }}
name_enpoint: ${{ steps.get-ml-endpoint.outputs.NAME_ENPOINT }}
steps:
- name: "Az CLI login"
uses: azure/login@v1
with:
creds: ${{secrets.AZURE_CREDENTIALS}}
enable-AzPSSession: true
- name: install-extension
run: az extension add -n ml -y
- name: update-extension
run: az extension update -n ml
- id: get-ml-endpoint
name: get-ml-endpoint
run: |
echo "CHECK_ENPOINT=$(az ml online-endpoint show --n ${{ format('taxi{0}', needs.get-config.outputs.oep) }} -g ${{ needs.get-config.outputs.resource_group }} -w ${{ needs.get-config.outputs.aml_workspace }} --query name)" >> $GITHUB_OUTPUT
echo "NAME_ENPOINT=${{ format('taxi{0}', needs.get-config.outputs.oep) }}" >> $GITHUB_OUTPUT
# if [[ format('taxi1234{0}', needs.get-config.outputs.oep == $endpoint }} ]]
# then
# echo "same"
# else
# echo "not same"
# fi
# TODO: Update if exists else create
create-endpoint:
needs: [get-config, get-endpoint]
runs-on: ubuntu-latest
if: needs.get-endpoint.outputs.check_enpoint != needs.get-endpoint.outputs.name_enpoint
steps:
- id: test
name: test
run: |
echo "ccccccccccccccccccccc"
echo ${{ needs.get-endpoint.outputs.check_enpoint }}
echo ${{ needs.get-endpoint.outputs.name_enpoint }}
# - id: create-end
# name: create-end
# uses: Azure/mlops-templates/.github/workflows/create-endpoint.yml@main
# with:
# resource_group: ${{ needs.get-config.outputs.resource_group }}
# workspace_name: ${{ needs.get-config.outputs.aml_workspace }}
# endpoint_file: mlops/azureml/deploy/online/online-endpoint.yml
# endpoint_name: ${{ format('taxi{0}', needs.get-config.outputs.oep) }}
# endpoint_type: online
# secrets:
# creds: ${{secrets.AZURE_CREDENTIALS}}
# # TODO: Update if exists else create
# create-deployment:
# uses: Azure/mlops-templates/.github/workflows/create-deployment.yml@main
# needs: [get-config]
# with:
# resource_group: ${{ needs.get-config.outputs.resource_group }}
# workspace_name: ${{ needs.get-config.outputs.aml_workspace }}
# endpoint_file: mlops/azureml/deploy/online/online-deployment.yml
# endpoint_name: ${{ format('taxi{0}', needs.get-config.outputs.oep) }}
# endpoint_type: online
# deployment_name: taxi-online-dp
# secrets:
# creds: ${{secrets.AZURE_CREDENTIALS}}
# allocate-traffic:
# uses: Azure/mlops-templates/.github/workflows/allocate-traffic.yml@main
# needs: [get-config]
# with:
# resource_group: ${{ needs.get-config.outputs.resource_group }}
# workspace_name: ${{ needs.get-config.outputs.aml_workspace }}
# traffic_allocation: taxi-online-dp=100
# endpoint_name: ${{ format('taxi{0}', needs.get-config.outputs.oep) }}
# secrets:
# creds: ${{secrets.AZURE_CREDENTIALS}}