11
8

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.

1つのCodePipelineプロジェクトで複数のECSサービスをデプロイする

Last updated at Posted at 2020-05-04

概要

CodePipelineで1つのプロジェクトで複数のECSサービスをデプロイするための設定方法に工夫が必要だったのでメモ

ポイント

  • buildspec.ymlのアーティファクトで、デプロイするサービスの数だけのimagedefinitions.jsonを生成する
  • Deployステージのactionを複数作成して、buildspec.ymlに従って生成されたアーティファクトのimagedefinitions.jsonを使用する

buildspec.ymlのアーティファクトで、デプロイするサービスの数だけimagedefinitions.jsonを生成する

buildspec.yml
phases:
 post_build:
   commands:
     - echo Build completed on `date`
     - echo Pushing the Docker images...
     - docker push $SERVICE1_REPOSITORY_URI:$IMAGE_TAG
     - docker push $SERVICE2_REPOSITORY_URI:$IMAGE_TAG
     - echo Writing image definitions file...
     - printf '[{"name":"server","imageUri":"%s"}]' $SERVICE1_REPOSITORY_URI:$IMAGE_TAG > service1_imagedefinitions.json
     - printf '[{"name":"runner","imageUri":"%s"}]' $SERVICE2_REPOSITORY_URI:$IMAGE_TAG > service2_imagedefinitions.json
artifacts:
  files:
    - service1_imagedefinitions.json
    - service2_imagedefinitions.json

Deployステージのactionを複数作成して、buildspec.ymlに従って生成されたアーティファクトのサービス名_imagedefinitions.jsonを使用する

ここで指定するサービス名_imagedefinitions.jsonは、決まってないので好きな名前で名前で良い。
ビルドステージで指定した

       - printf '[{"name":"server","imageUri":"%s"}]' $SERVICE1_REPOSITORY_URI:$IMAGE_TAG > service1_imagedefinitions.json
       - printf '[{"name":"runner","imageUri":"%s"}]' $SERVICE2_REPOSITORY_URI:$IMAGE_TAG > service2_imagedefinitions.json

service1_imagedefinitions.jsonservice2_imagedefinitions.jsonの部分とDeployステージのactionで指定するFileNameが一致していることが大事

68747470733a2f2f696d672e6573612e696f2f75706c6f6164732f70726f64756374696f6e2f6174746163686d656e74732f31333037392f323032302f30342f32322f36393035312f65376531353833332d346234382d343963322d613533612d6263633962356235656364362e706e67.png 68747470733a2f2f696d672e6573612e696f2f75706c6f6164732f70726f64756374696f6e2f6174746163686d656e74732f31333037392f323032302f30342f32322f36393035312f64393663373632652d373236332d343530302d616662632d3833393361363032366162322e706e67.png 68747470733a2f2f696d672e6573612e696f2f75706c6f6164732f70726f64756374696f6e2f6174746163686d656e74732f31333037392f323032302f30342f32322f36393035312f38376339333332632d393164392d343833642d393261662d6266396131643366653735392e706e67.png
Terraform

Terraformでは、FileName の部分にサービス名_imagedefinitions.jsonといったイメージ定義を指定する

  stage {
    name = "Deploy"

    dynamic "action" {
      for_each = var.deploy_actions
      content {
        name            = action.value.name
        category        = action.value.category
        owner           = action.value.owner
        provider        = action.value.provider
        input_artifacts = action.value.input_artifacts
        version         = action.value.version

        configuration = {
          FileName    = "service1_imagedefinitions.json"
          ClusterName = var.cluster_name
          ServiceName = var.service_name
        }

      }
    }

AWS: aws_codepipeline - Terraform by HashiCorp

所感

AWSCode3兄弟は概念がたくさん出現するので混乱しますが、ビルド→ECSデプロイの流れはとても便利だなと思いました:relaxed:

11
8
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
11
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?