-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add random numbers at the end of endpoint name
- Loading branch information
Showing
20 changed files
with
278 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 71 additions & 0 deletions
71
...kflows/cli-endpoints-batch-deploy-pipelines-batch-scoring-with-preprocessing-endpoint.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# This code is autogenerated. | ||
# Code is generated by running custom script: python3 readme.py | ||
# Any manual changes to this file may cause incorrect behavior. | ||
# Any manual changes will be overwritten if the code is regenerated. | ||
|
||
name: cli-endpoints-batch-deploy-pipelines-batch-scoring-with-preprocessing-endpoint | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "18 11/12 * * *" | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- cli/endpoints/batch/deploy-pipelines/batch-scoring-with-preprocessing/** | ||
- cli/endpoints/batch/** | ||
- infra/bootstrapping/** | ||
- .github/workflows/cli-endpoints-batch-deploy-pipelines-batch-scoring-with-preprocessing-endpoint.yml | ||
- cli/setup.sh | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: check out repo | ||
uses: actions/checkout@v2 | ||
- name: azure login | ||
uses: azure/login@v1 | ||
with: | ||
creds: ${{secrets.AZUREML_CREDENTIALS}} | ||
- name: bootstrap resources | ||
run: | | ||
bash bootstrap.sh | ||
working-directory: infra | ||
continue-on-error: false | ||
- name: setup-cli | ||
run: | | ||
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh"; | ||
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh"; | ||
bash setup.sh | ||
working-directory: cli | ||
continue-on-error: true | ||
- name: delete endpoint if existing | ||
run: | | ||
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh"; | ||
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh"; | ||
az ml batch-endpoint delete -n withpreprocessingendpoint4161 -y | ||
working-directory: cli | ||
continue-on-error: true | ||
- name: create endpoint | ||
run: | | ||
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh"; | ||
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh"; | ||
cat endpoints/batch/deploy-pipelines/batch-scoring-with-preprocessing/endpoint.yml | ||
az ml batch-endpoint create -n withpreprocessingendpoint4161 -f endpoints/batch/deploy-pipelines/batch-scoring-with-preprocessing/endpoint.yml | ||
working-directory: cli | ||
- name: create deployment | ||
run: | | ||
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh"; | ||
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh"; | ||
cat endpoints/batch/deploy-pipelines/batch-scoring-with-preprocessing/deployment.yml | ||
az ml batch-deployment create -e withpreprocessingendpoint4161 -f endpoints/batch/deploy-pipelines/batch-scoring-with-preprocessing/deployment.yml | ||
working-directory: cli | ||
- name: cleanup endpoint | ||
run: | | ||
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh"; | ||
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh"; | ||
az ml batch-endpoint delete -n withpreprocessingendpoint4161 -y | ||
working-directory: cli |
71 changes: 71 additions & 0 deletions
71
.github/workflows/cli-endpoints-batch-deploy-pipelines-hello-batch-endpoint.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# This code is autogenerated. | ||
# Code is generated by running custom script: python3 readme.py | ||
# Any manual changes to this file may cause incorrect behavior. | ||
# Any manual changes will be overwritten if the code is regenerated. | ||
|
||
name: cli-endpoints-batch-deploy-pipelines-hello-batch-endpoint | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "18 11/12 * * *" | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- cli/endpoints/batch/deploy-pipelines/hello-batch/** | ||
- cli/endpoints/batch/** | ||
- infra/bootstrapping/** | ||
- .github/workflows/cli-endpoints-batch-deploy-pipelines-hello-batch-endpoint.yml | ||
- cli/setup.sh | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: check out repo | ||
uses: actions/checkout@v2 | ||
- name: azure login | ||
uses: azure/login@v1 | ||
with: | ||
creds: ${{secrets.AZUREML_CREDENTIALS}} | ||
- name: bootstrap resources | ||
run: | | ||
bash bootstrap.sh | ||
working-directory: infra | ||
continue-on-error: false | ||
- name: setup-cli | ||
run: | | ||
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh"; | ||
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh"; | ||
bash setup.sh | ||
working-directory: cli | ||
continue-on-error: true | ||
- name: delete endpoint if existing | ||
run: | | ||
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh"; | ||
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh"; | ||
az ml batch-endpoint delete -n pelineshellobatchendpoint4977 -y | ||
working-directory: cli | ||
continue-on-error: true | ||
- name: create endpoint | ||
run: | | ||
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh"; | ||
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh"; | ||
cat endpoints/batch/deploy-pipelines/hello-batch/endpoint.yml | ||
az ml batch-endpoint create -n pelineshellobatchendpoint4977 -f endpoints/batch/deploy-pipelines/hello-batch/endpoint.yml | ||
working-directory: cli | ||
- name: create deployment | ||
run: | | ||
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh"; | ||
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh"; | ||
cat endpoints/batch/deploy-pipelines/hello-batch/deployment.yml | ||
az ml batch-deployment create -e pelineshellobatchendpoint4977 -f endpoints/batch/deploy-pipelines/hello-batch/deployment.yml | ||
working-directory: cli | ||
- name: cleanup endpoint | ||
run: | | ||
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh"; | ||
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh"; | ||
az ml batch-endpoint delete -n pelineshellobatchendpoint4977 -y | ||
working-directory: cli |
64 changes: 64 additions & 0 deletions
64
.github/workflows/cli-endpoints-batch-deploy-pipelines-training-with-components-endpoint.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# This code is autogenerated. | ||
# Code is generated by running custom script: python3 readme.py | ||
# Any manual changes to this file may cause incorrect behavior. | ||
# Any manual changes will be overwritten if the code is regenerated. | ||
|
||
name: cli-endpoints-batch-deploy-pipelines-training-with-components-endpoint | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "18 11/12 * * *" | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- cli/endpoints/batch/deploy-pipelines/training-with-components/** | ||
- cli/endpoints/batch/** | ||
- infra/bootstrapping/** | ||
- .github/workflows/cli-endpoints-batch-deploy-pipelines-training-with-components-endpoint.yml | ||
- cli/setup.sh | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: check out repo | ||
uses: actions/checkout@v2 | ||
- name: azure login | ||
uses: azure/login@v1 | ||
with: | ||
creds: ${{secrets.AZUREML_CREDENTIALS}} | ||
- name: bootstrap resources | ||
run: | | ||
bash bootstrap.sh | ||
working-directory: infra | ||
continue-on-error: false | ||
- name: setup-cli | ||
run: | | ||
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh"; | ||
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh"; | ||
bash setup.sh | ||
working-directory: cli | ||
continue-on-error: true | ||
- name: delete endpoint if existing | ||
run: | | ||
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh"; | ||
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh"; | ||
az ml batch-endpoint delete -n ingwithcomponentsendpoint5309 -y | ||
working-directory: cli | ||
continue-on-error: true | ||
- name: create endpoint | ||
run: | | ||
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh"; | ||
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh"; | ||
cat endpoints/batch/deploy-pipelines/training-with-components/endpoint.yml | ||
az ml batch-endpoint create -n ingwithcomponentsendpoint5309 -f endpoints/batch/deploy-pipelines/training-with-components/endpoint.yml | ||
working-directory: cli | ||
- name: cleanup endpoint | ||
run: | | ||
source "${{ github.workspace }}/infra/bootstrapping/sdk_helpers.sh"; | ||
source "${{ github.workspace }}/infra/bootstrapping/init_environment.sh"; | ||
az ml batch-endpoint delete -n ingwithcomponentsendpoint5309 -y | ||
working-directory: cli |
Oops, something went wrong.