From 59559d394975f9ab59ce36717819be187d8c1656 Mon Sep 17 00:00:00 2001 From: Theelepel Date: Tue, 11 Jun 2019 18:26:39 +0200 Subject: [PATCH 1/5] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c3815408..f868cdd9 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -6,7 +6,7 @@ pool: #Your build pipeline references a secret variable named ‘subscription_id’. Create or edit the build pipeline for this YAML file, define the variable on the Variables tab, and then select the option to make it secret. See https://go.microsoft.com/fwlink/?linkid=865972 variables: -- group: AzureKeyVaultSecrets +- group: mlops group trigger: - master From ece7d964dd991540146a07fb27aba053651b27e1 Mon Sep 17 00:00:00 2001 From: Theelepel Date: Tue, 11 Jun 2019 18:55:28 +0200 Subject: [PATCH 2/5] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f868cdd9..762a9692 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -6,7 +6,7 @@ pool: #Your build pipeline references a secret variable named ‘subscription_id’. Create or edit the build pipeline for this YAML file, define the variable on the Variables tab, and then select the option to make it secret. See https://go.microsoft.com/fwlink/?linkid=865972 variables: -- group: mlops group +- group: mlopsgroup trigger: - master From f064c833066a6cb13015c87c2ed5c544e6ac8928 Mon Sep 17 00:00:00 2001 From: Theelepel Date: Wed, 19 Jun 2019 09:56:07 +0200 Subject: [PATCH 3/5] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 762a9692..0fe2609d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -6,7 +6,7 @@ pool: #Your build pipeline references a secret variable named ‘subscription_id’. Create or edit the build pipeline for this YAML file, define the variable on the Variables tab, and then select the option to make it secret. See https://go.microsoft.com/fwlink/?linkid=865972 variables: -- group: mlopsgroup +- group: mlops_rg trigger: - master From ab890d3ae93e5d090cbbb398e54db2d080e7e530 Mon Sep 17 00:00:00 2001 From: Theelepel Date: Wed, 19 Jun 2019 16:31:32 +0200 Subject: [PATCH 4/5] Update create_scoring_image.py changed diabetes name to check container repo name --- code/scoring/create_scoring_image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/scoring/create_scoring_image.py b/code/scoring/create_scoring_image.py index 1aafade1..1caed1e6 100644 --- a/code/scoring/create_scoring_image.py +++ b/code/scoring/create_scoring_image.py @@ -79,7 +79,7 @@ ) os.chdir("scoring") -image_name = "diabetes-model-score" +image_name = "diabetes-model-score_test" image_config = ContainerImage.image_configuration( execution_script="score.py", From 0583e51922f4721ece1f39e6f40b103f0ccc0072 Mon Sep 17 00:00:00 2001 From: Theelepel Date: Thu, 20 Jun 2019 10:21:08 +0200 Subject: [PATCH 5/5] Update create_scoring_image.py image name must be alfanumerical and - or . --- code/scoring/create_scoring_image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/scoring/create_scoring_image.py b/code/scoring/create_scoring_image.py index 1caed1e6..696950c9 100644 --- a/code/scoring/create_scoring_image.py +++ b/code/scoring/create_scoring_image.py @@ -79,7 +79,7 @@ ) os.chdir("scoring") -image_name = "diabetes-model-score_test" +image_name = "diabetes-model-score-test" image_config = ContainerImage.image_configuration( execution_script="score.py",