1
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.

MIMEマルチパート形式を使用してshell-scriptとcloud-configをuser-dataに指定する

Last updated at Posted at 2020-12-09

概要

  • クラウド環境へのインスタンス構築でuserdataを指定する際に、通常ではshell-scriptとcloud-configの両方を指定することができない。
  • MIMEマルチパート形式のファイルを作成すればそれをuserdataに指定することでshellとcloud-configの両方がcloud-initで実行可能となる。

command

  • commandフォーマット
write-mime-multipart --output=<アウトプットファイル名称> <インプットcloud-configファイルパス>:text/cloud-config <インプットshell-scriptファイルパス>:text/x-shellscript
  • command例
write-mime-multipart --output=hybrid-userdata ./cloudconfig.yml:text/cloud-config ./shellscript.sh:text/x-shellscript

文字コードの変換が必要な場合

  • マルチパート形式のファイルを作成する際、作成元のファイルの文字コードがutf-8の場合に正常に変換できなかった。write-mime-multipartのオプションで自動で変換する方法が見当たらなかったためiconvで変換してからファイル作成した。
iconv -c -f UTF-8 -t US-ASCII shellscript.sh -o shellscript.sh
1
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
1
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?