LoginSignup
7
2

More than 1 year has passed since last update.

CircleCI Ubuntu14.04およびUbuntu16.04イメージ提供終了に伴うubuntu20.04への移行で詰まったところ

Last updated at Posted at 2022-05-19
  • .circleci/config.yml の修正ポイント

結論

  • orbsを aws-ecr: circleci/aws-ecr@8.1.2 に上げる
  • CircleCIの環境変数に AWS_ECR_REGISTRY_ID を追加、12桁の registry_id を登録
  • ECR関連の環境変数には$を付ける
  • imageの指定を image: ubuntu-2004:202201-02 に変更
  • account-urlは使わなくなったので削除

ECR関連の環境変数?

  • こんなエラーが出てる時はコレ
Provided region_name 'AWS_DEFAULT_REGION' doesn't match a supported format.
Error: Cannot perform an interactive login from a non TTY device
  • 以下対応例
- region: AWS_DEFAULT_REGION
↓
- region: $AWS_DEFAULT_REGION

registry_idって?

xxxxxxxxxxxx.dkr.ecr.ap-northeast-1.amazonaws.com
↑↑↑このxxxxの部分

参考(公式ドキュメント)

補足

  • 2022/5/31に提供停止なので対応はお急ぎ下さい
  • 4時間詰まったので同じ思いをする人が1人でも減るように共有
7
2
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
7
2