本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
自訂 Amazon EKS啟動範本
AWS Batch 在 Amazon 上EKS支援啟動範本。啟動範本可以執行的操作有限制。
重要
AWS Batch 執行 /etc/eks/bootstrap.sh
。請勿在啟動範本或 /etc/eks/bootstrap.sh
中執行 cloud-init user-data 指令碼。除了 參數之外,您還可以將其他--kubelet-extra-args
參數新增至 bootstrap.sh/etc/aws-batch/batch.config
檔案中設定 AWS_BATCH_KUBELET_EXTRA_ARGS
變數。如需詳細資訊,請參閱下列範例。
注意
如果在CreateComputeEnvironment呼叫 之後變更啟動範本, UpdateComputeEnvironment 必須呼叫 才能評估啟動範本的版本以進行取代。
新增kubelet
額外的引數
AWS Batch 支援將額外的引數新增至 kubelet
命令。如需支援的參數清單,請參閱 kubelet
會新增至--node-labels mylabel=helloworld
kubelet
命令列。
MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="==MYBOUNDARY==" --==MYBOUNDARY== Content-Type: text/x-shellscript; charset="us-ascii" #!/bin/bash mkdir -p /etc/aws-batch echo AWS_BATCH_KUBELET_EXTRA_ARGS=\"
--node-labels mylabel=helloworld
\" >> /etc/aws-batch/batch.config --==MYBOUNDARY==--
設定容器執行時間
您可以使用 AWS Batch CONTAINER_RUNTIME
環境變數,在受管節點上設定容器執行期。下列範例會將容器執行時間設定為 containerd
bootstrap.sh
。如需詳細資訊,請參閱《》中的 containerd
注意
CONTAINER_RUNTIME
環境變數等同於 --container-runtime
的選項bootstrap.sh
。如需詳細資訊,請參閱 Options
MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="==MYBOUNDARY==" --==MYBOUNDARY== Content-Type: text/x-shellscript; charset="us-ascii" #!/bin/bash mkdir -p /etc/aws-batch echo CONTAINER_RUNTIME=containerd >> /etc/aws-batch/batch.config --==MYBOUNDARY==--
安裝 Amazon EFS磁碟區
您可以使用啟動範本將磁碟區掛載到節點。在下列範例中,會使用 cloud-config
packages
和 runcmd
設定。如需詳細資訊,請參閱中的雲端組態範例
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 _netdev,noresvport,tls,iam 0 0" >> /etc/fstab - mount -t efs -o tls ${file_system_id_01}:/ ${efs_directory} --==MYBOUNDARY==--
若要在任務中使用此磁碟區,必須在 eksProperties 參數中新增至 RegisterJobDefinition。下列範例是任務定義的很大一部分。
{ "jobDefinitionName": "MyJobOnEks_EFS", "type": "container", "eksProperties": { "podProperties": { "containers": [ { "image": "public.ecr.aws/amazonlinux/amazonlinux:2", "command": ["ls", "-la", "/efs"], "resources": { "limits": { "cpu": "1", "memory": "1024Mi" } }, "volumeMounts": [ { "name": "
efs-volume
", "mountPath": "/efs
" } ] } ], "volumes": [ { "name": "efs-volume
", "hostPath": { "path": "/mnt/efs
" } } ] } } }
在節點中,Amazon EFS磁碟區會掛載在/mnt/efs
目錄中。在 Amazon EKS任務的容器中,磁碟區會掛載在/efs
目錄中。
IPv6 支援
AWS Batch 支援具有IPv6地址的 Amazon EKS叢集。 AWS Batch 支援不需要自訂。不過,在開始之前,建議您檢閱 Amazon EKS使用者指南 中將IPv6地址指派給 Pod 和服務中概述的考量事項和條件。