翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。
Devfile イベント
現在、 は devfile 内のpostStart
イベント CodeCatalyst のみをサポートしています。詳細については、Devfile.io ドキュメントpostStartObject
次の例は、devfile にpostStart
イベントバインディングを追加する方法を示しています。
commands:
- id: executescript
exec:
component: test
commandLine: "./projects/devfiles/script.sh"
- id: updateyum
exec:
component: test
commandLine: "yum -y update --security"
events:
postStart:
- updateyum
- executescript
起動後、開発環境は指定されたpostStart
コマンドを定義された順序で実行します。コマンドが失敗した場合、開発環境は引き続き実行され、実行出力は のログに保存されます/aws/mde/logs
。