Terjemahan disediakan oleh mesin penerjemah. Jika konten terjemahan yang diberikan bertentangan dengan versi bahasa Inggris aslinya, utamakan versi bahasa Inggris.
Referensi: Contoh template EC2 peluncuran Amazon
Berikut ini adalah contoh file multi-bagian MIME yang dapat Anda gunakan untuk membuat template Anda sendiri.
Contoh
Contoh: Memasang sistem file Amazon EFS
Contoh file multi-bagian MIME ini mengonfigurasi sumber daya komputasi untuk menginstal paket amazon-efs-utils
dan memasang sistem file Amazon EFS yang sudah ada di /mnt/efs
.
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="==MYBOUNDARY=="
--==MYBOUNDARY==
Content-Type: text/cloud-config; charset="us-ascii"
packages:
- amazon-efs-utils
runcmd:
- file_system_id_01=fs-abcdef123
- efs_directory=/mnt/efs
- mkdir -p ${efs_directory}
- echo "${file_system_id_01}:/ ${efs_directory} efs tls,_netdev" >> /etc/fstab
- mount -a -t efs defaults
--==MYBOUNDARY==--
Contoh: Menimpa konfigurasi agen kontainer Amazon ECS default
Contoh file multi-bagian MIME ini menimpa pengaturan pembersihan gambar Docker default untuk suatu sumber daya komputasi.
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="==MYBOUNDARY=="
--==MYBOUNDARY==
Content-Type: text/x-shellscript; charset="us-ascii"
#!/bin/bash
echo ECS_IMAGE_CLEANUP_INTERVAL=60m >> /etc/ecs/ecs.config
echo ECS_IMAGE_MINIMUM_CLEANUP_AGE=60m >> /etc/ecs/ecs.config
--==MYBOUNDARY==--
Contoh: Pasang Amazon yang ada FSx untuk sistem file Lustre
Contoh file multi-bagian MIME ini mengonfigurasi sumber daya komputasi untuk menginstal lustre2.10
paket dari Perpustakaan Ekstra dan memasang sistem file Lustre yang sudah ada FSx pada dan nama mount. /scratch
fsx
Contoh ini untuk Amazon Linux 2. Untuk petunjuk penginstalan untuk distribusi Linux lainnya, lihat Menginstal Klien Lustre di Amazon FSx untuk Panduan Pengguna Lustre. Untuk informasi selengkapnya, lihat Memasang sistem FSx file Amazon Anda secara otomatis di Panduan Pengguna Amazon FSx for Lustre.
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="==MYBOUNDARY=="
--==MYBOUNDARY==
Content-Type: text/cloud-config; charset="us-ascii"
runcmd:
- file_system_id_01=fs-0abcdef1234567890
- region=us-east-2
- fsx_directory=/scratch
- amazon-linux-extras install -y lustre2.10
- mkdir -p ${fsx_directory}
- mount -t lustre ${file_system_id_01}.fsx.${region}.amazonaws.com@tcp:fsx
${fsx_directory}
--==MYBOUNDARY==--
Titik pemasangan harus dipetakan ke dalam kontainer di anggota volumes dan mountPoints properti kontainer.
{ "volumes": [ { "host": { "sourcePath": "
/scratch
" }, "name": "Scratch
" } ], "mountPoints": [ { "containerPath": "/scratch
", "sourceVolume": "Scratch
" } ], }