Merged PR 603: [ライセンスアラート]FunctionAPPのprod環境適用(pipeline含む)
## 概要 [Task2870: [ライセンスアラート]FunctionAPPのprod環境適用(pipeline含む)](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/2870) - 本番環境用のpipelineに対して、関数アプリのイメージをデプロイするjobを追加しました ## レビューポイント - 特になし ## UIの変更 - 無し ## 動作確認状況 - 未実施。本件マージ後にpipeline動作させる予定 ## 補足 - デプロイに関する記載についてはstaging環境のpipelineで動作実績があります(job:function_deploy)
This commit is contained in:
parent
ebfc05040b
commit
f82f202b63
@ -83,9 +83,24 @@ jobs:
|
|||||||
is_static_export: false
|
is_static_export: false
|
||||||
verbose: false
|
verbose: false
|
||||||
azure_static_web_apps_api_token: $(STATIC_DICTATION_DEPLOYMENT_TOKEN)
|
azure_static_web_apps_api_token: $(STATIC_DICTATION_DEPLOYMENT_TOKEN)
|
||||||
- job: smoke_test
|
- job: function_deploy
|
||||||
dependsOn: frontend_deploy
|
dependsOn: frontend_deploy
|
||||||
condition: succeeded('frontend_deploy')
|
condition: succeeded('frontend_deploy')
|
||||||
|
displayName: function Deploy
|
||||||
|
pool:
|
||||||
|
vmImage: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- checkout: self
|
||||||
|
clean: true
|
||||||
|
fetchDepth: 1
|
||||||
|
- task: AzureFunctionAppContainer@1
|
||||||
|
inputs:
|
||||||
|
azureSubscription: 'omds-service-connection-prod'
|
||||||
|
appName: 'func-odms-dictation-prod'
|
||||||
|
imageName: 'crodmsregistrymaintenance.azurecr.io/odmscloud/staging/dictation_function:$(Build.SourceVersion)'
|
||||||
|
- job: smoke_test
|
||||||
|
dependsOn: function_deploy
|
||||||
|
condition: succeeded('function_deploy')
|
||||||
displayName: 'smoke test'
|
displayName: 'smoke test'
|
||||||
pool:
|
pool:
|
||||||
name: odms-deploy-pipeline
|
name: odms-deploy-pipeline
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user