0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[Azure] デプロイセンターのブランチを変更する方法

Last updated at Posted at 2020-10-10

はじめに

Azure App ServiceにGit(GitHub含む)を使用してデプロイしている場合についてです。

Azureポータルのデプロイセンターでは構成時に設定したブランチからデプロイされるようになっていますが、Azureポータルからはこのブランチを変更する機能がありません。

つまり一度デプロイを切断して再構成することになってしまうのですが、切断せずに変更する方法を説明します。

before.png

ブランチを変更する方法

ブランチはKuduサービスでREST APIを呼び出すことで変更できます。

具体的な方法はここで説明されています。
Deployment branch

# Switch branch (/settings endpoint)
$ curl https://<user>:<pass>@<site>.scm.azurewebsites.net/settings \
       --data "{key: 'branch', value: '<branch>' }" \
       -H "Content-Type: application/json; charset=UTF-8"

<user><pass>はデプロイユーザの情報です。「発行プロファイルの取得」などから確認してください。
<site>はApp Service名です。
<branch>は変更したいブランチ名です。

実行するとブランチが変更されます。デプロイセンターの画面を更新して変更されたことを確認してください。
※ 2020/10/10現在、「最新の情報に更新」をしてもブランチなどの基本情報は更新されません。一度別のページに移動するか、ブラウザから更新してください。

ブランチが切り替わったらデプロイしましょう。
デプロイセンターの同期から新しいブランチでデプロイを開始します。
APIを利用してデプロイしたい場合は、その例も先程のwikiに記載されています。

バッチの紹介

先程のコマンドを使用してバッチファイルを作成しました。

blue32a/azure-change-deploy-branch

例えばKuduサービスから適当なディレクトリにバッチファイルを置いて実行できます。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?