-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathrunbook.txt
More file actions
23 lines (12 loc) · 711 Bytes
/
runbook.txt
File metadata and controls
23 lines (12 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
python G:\GitHub\session-DataScienceDevops\PythonModel\DiabetesModel.py
http://localhost:5071/train
http://localhost:5071/score?var1=1
G:
cd G:\GitHub\session-DataScienceDevops\Docker\DiabetesProductionDocker
docker build -t productiondiabetes .
docker tag productiondiabetes datasciencedevops.azurecr.io/productiondiabetes:v1
az acr login --name datasciencedevops
docker push datasciencedevops.azurecr.io/productiondiabetes:v1
az acr repository list --name datasciencedevops --output table
az aks create --resource-group session-datascience-devops --name datasciencedevops --node-count 1 --generate-ssh-keys
az aks get-credentials --resource-group session-datascience-devops --name datasciencedevops